├── .github
└── workflows
│ └── no-links.yml
├── .gitignore
├── CHANGELOG.md
├── Gemfile
├── Gemfile.lock
├── Guardfile
├── PEATIO-INSTALLER-ONE.sh
├── PEATIO-INSTALLER-THREE.sh
├── PEATIO-INSTALLER-TWO.sh
├── README.md
├── Rakefile
├── app
├── api
│ └── api_v2
│ │ ├── auth
│ │ ├── authenticator.rb
│ │ ├── middleware.rb
│ │ └── utils.rb
│ │ ├── constraints.rb
│ │ ├── deposits.rb
│ │ ├── entities
│ │ ├── account.rb
│ │ ├── base.rb
│ │ ├── deposit.rb
│ │ ├── market.rb
│ │ ├── member.rb
│ │ ├── order.rb
│ │ ├── order_book.rb
│ │ └── trade.rb
│ │ ├── errors.rb
│ │ ├── helpers.rb
│ │ ├── k.rb
│ │ ├── markets.rb
│ │ ├── members.rb
│ │ ├── mount.rb
│ │ ├── named_params.rb
│ │ ├── order_books.rb
│ │ ├── orders.rb
│ │ ├── tickers.rb
│ │ ├── tools.rb
│ │ ├── trades.rb
│ │ ├── validations.rb
│ │ └── websocket_protocol.rb
├── assets
│ ├── images
│ │ ├── favicon.ico
│ │ └── logo.png
│ ├── javascripts
│ │ ├── admin.js
│ │ ├── admin
│ │ │ └── app.js.coffee
│ │ ├── api_v2.js
│ │ ├── application.js.coffee
│ │ ├── component_data
│ │ │ ├── global.js.coffee
│ │ │ ├── market.js.coffee
│ │ │ ├── member.js.coffee
│ │ │ └── place_order.js.coffee
│ │ ├── component_mixin
│ │ │ ├── item_list.js.coffee
│ │ │ ├── notification.js.coffee
│ │ │ └── order_input.js.coffee
│ │ ├── component_ui
│ │ │ ├── account_balance.js.coffee
│ │ │ ├── account_summary.js.coffee
│ │ │ ├── auto_window.js.coffee
│ │ │ ├── candlestick.js.coffee
│ │ │ ├── depth.js.coffee
│ │ │ ├── flash_message.js.coffee
│ │ │ ├── float.js.coffee
│ │ │ ├── header.js.coffee
│ │ │ ├── key_bind.js.coffee
│ │ │ ├── market_switch.js.coffee
│ │ │ ├── market_ticker.js.coffee
│ │ │ ├── market_trades.js.coffee
│ │ │ ├── my_orders.js.coffee
│ │ │ ├── order_book.js.coffee
│ │ │ ├── order_price.js.coffee
│ │ │ ├── order_total.js.coffee
│ │ │ ├── order_volume.js.coffee
│ │ │ ├── place_order.js.coffee
│ │ │ ├── push_button.js.coffee
│ │ │ ├── range_switch.js.coffee
│ │ │ ├── sms_auth_verify.js.coffee
│ │ │ ├── switch.js.coffee
│ │ │ └── two_factor_auth.js.coffee
│ │ ├── funds.js.coffee
│ │ ├── funds
│ │ │ ├── controllers
│ │ │ │ ├── deposit_history_controller.js.coffee
│ │ │ │ ├── deposits_controller.js.coffee
│ │ │ │ ├── fund_sources_controller.js.coffee
│ │ │ │ ├── withdraw_hitstory_controller.js.coffee
│ │ │ │ └── withdraws_controller.js.coffee
│ │ │ ├── directives
│ │ │ │ └── accounts_directives.js.coffee
│ │ │ ├── events.js.coffee
│ │ │ ├── filters
│ │ │ │ ├── precision_filters.js.coffee
│ │ │ │ ├── text_filters.js.coffee
│ │ │ │ └── translate_filters.js.coffee
│ │ │ ├── funds.js.coffee
│ │ │ ├── models
│ │ │ │ ├── .gitkeep
│ │ │ │ ├── account.js.coffee
│ │ │ │ ├── currency.js.coffee
│ │ │ │ ├── deposit.js.coffee
│ │ │ │ ├── deposit_channel.js.coffee
│ │ │ │ ├── member.js.coffee
│ │ │ │ ├── withdraw.js.coffee
│ │ │ │ └── withdraw_channel.js.coffee
│ │ │ ├── router.js.coffee
│ │ │ └── services
│ │ │ │ ├── account_service.js.coffee
│ │ │ │ ├── fund_source_service.js.coffee
│ │ │ │ ├── gon.js.coffee
│ │ │ │ └── ng_dialog.js.coffee
│ │ ├── helpers
│ │ │ ├── .gitkeep
│ │ │ └── formatter.js.coffee
│ │ ├── highcharts
│ │ │ ├── config.js.coffee
│ │ │ └── technical_indicators.js
│ │ ├── html5.js
│ │ ├── lib
│ │ │ ├── ajax.js.coffee
│ │ │ ├── angular-ui-router.js
│ │ │ ├── notifier.js.coffee
│ │ │ ├── peatio_model.js.coffee
│ │ │ ├── pusher_connection.js.coffee
│ │ │ ├── pusher_subscriber.js.coffee
│ │ │ ├── sfx.js.coffee
│ │ │ └── tiny-pubsub.js
│ │ ├── locales
│ │ │ ├── en.js.erb
│ │ │ └── zh-CN.js.erb
│ │ ├── market.js.coffee
│ │ ├── swagger-ui
│ │ │ ├── lib
│ │ │ │ ├── backbone-min.js
│ │ │ │ ├── handlebars-1.0.0.js
│ │ │ │ ├── highlight.7.3.pack.js
│ │ │ │ ├── jquery-1.8.0.min.js
│ │ │ │ ├── jquery.ba-bbq.min.js
│ │ │ │ ├── jquery.slideto.min.js
│ │ │ │ ├── jquery.wiggle.min.js
│ │ │ │ ├── shred.bundle.js
│ │ │ │ ├── shred
│ │ │ │ │ └── content.js
│ │ │ │ ├── swagger-oauth.js
│ │ │ │ ├── swagger.js
│ │ │ │ └── underscore-min.js
│ │ │ └── swagger-ui.js
│ │ └── templates
│ │ │ ├── flash_message.jst.eco
│ │ │ ├── hint_order_success.jst.eco
│ │ │ ├── hint_order_warning.jst.eco
│ │ │ ├── market_trade.jst.eco
│ │ │ ├── my_trade.jst.eco
│ │ │ ├── order_active.jst.eco
│ │ │ ├── order_book_ask.jst.eco
│ │ │ ├── order_book_bid.jst.eco
│ │ │ ├── order_done.jst.eco
│ │ │ └── tooltip.jst.eco
│ └── stylesheets
│ │ ├── admin.css.scss
│ │ ├── api_v2.css.scss
│ │ ├── application.css.scss
│ │ ├── custom
│ │ └── market.css.scss
│ │ ├── features
│ │ ├── _assets.css.scss
│ │ ├── _custom.css.scss
│ │ ├── _documents.css.scss
│ │ ├── _history.css.scss
│ │ ├── _id_document.css.scss
│ │ ├── _market.css.scss
│ │ ├── _market_chart.css.scss
│ │ ├── _simple_captcha.css.scss
│ │ ├── _welcome.css.scss
│ │ └── funds.css.scss
│ │ ├── layouts
│ │ ├── _basic.css.scss
│ │ ├── _custom.css.scss
│ │ └── _header.css.scss
│ │ ├── market.css.scss
│ │ ├── market_light.css.scss
│ │ ├── swagger-ui
│ │ ├── highlight.default.css
│ │ └── screen.css
│ │ └── vars
│ │ ├── _basic.css.scss
│ │ ├── _bootstrap.css.scss
│ │ ├── _bootstrap_market.css.scss
│ │ ├── _custom.css.scss
│ │ ├── _market.css.scss
│ │ └── _market_light.css.scss
├── controllers
│ ├── activations_controller.rb
│ ├── admin
│ │ ├── base_controller.rb
│ │ ├── comments_controller.rb
│ │ ├── dashboard_controller.rb
│ │ ├── deposits
│ │ │ ├── banks_controller.rb
│ │ │ ├── base_controller.rb
│ │ │ ├── ethers_controller.rb
│ │ │ └── satoshis_controller.rb
│ │ ├── deposits_controller.rb
│ │ ├── documents_controller.rb
│ │ ├── id_documents_controller.rb
│ │ ├── members_controller.rb
│ │ ├── proofs_controller.rb
│ │ ├── statistic
│ │ │ ├── base_controller.rb
│ │ │ ├── deposits_controller.rb
│ │ │ ├── members_controller.rb
│ │ │ ├── orders_controller.rb
│ │ │ ├── trades_controller.rb
│ │ │ └── withdraws_controller.rb
│ │ ├── tickets_controller.rb
│ │ ├── two_factors_controller.rb
│ │ └── withdraws
│ │ │ ├── banks_controller.rb
│ │ │ ├── base_controller.rb
│ │ │ ├── ethers_controller.rb
│ │ │ └── satoshis_controller.rb
│ ├── application_controller.rb
│ ├── authentications
│ │ ├── emails_controller.rb
│ │ └── identities_controller.rb
│ ├── concerns
│ │ ├── deposits
│ │ │ ├── ctrl_bankable.rb
│ │ │ └── ctrl_coinable.rb
│ │ ├── order_creation.rb
│ │ ├── token_management.rb
│ │ └── withdraws
│ │ │ └── withdrawable.rb
│ ├── documents_controller.rb
│ ├── identities_controller.rb
│ ├── members_controller.rb
│ ├── private
│ │ ├── account_versions_controller.rb
│ │ ├── api_tokens_controller.rb
│ │ ├── assets_controller.rb
│ │ ├── base_controller.rb
│ │ ├── comments_controller.rb
│ │ ├── deposits
│ │ │ ├── banks_controller.rb
│ │ │ ├── base_controller.rb
│ │ │ ├── ethers_controller.rb
│ │ │ └── satoshis_controller.rb
│ │ ├── fund_sources_controller.rb
│ │ ├── funds_controller.rb
│ │ ├── history_controller.rb
│ │ ├── id_documents_controller.rb
│ │ ├── markets_controller.rb
│ │ ├── order_asks_controller.rb
│ │ ├── order_bids_controller.rb
│ │ ├── orders_controller.rb
│ │ ├── payment_addresses_controller.rb
│ │ ├── pusher_controller.rb
│ │ ├── settings_controller.rb
│ │ ├── tickets_controller.rb
│ │ ├── trade_states_controller.rb
│ │ └── withdraws
│ │ │ ├── banks_controller.rb
│ │ │ ├── base_controller.rb
│ │ │ ├── ethers_controller.rb
│ │ │ └── satoshis_controller.rb
│ ├── reset_passwords_controller.rb
│ ├── sessions_controller.rb
│ ├── two_factors_controller.rb
│ ├── verify
│ │ ├── google_auths_controller.rb
│ │ └── sms_auths_controller.rb
│ ├── webhooks_controller.rb
│ └── welcome_controller.rb
├── grids
│ ├── account_versions_grid.rb
│ ├── documents_grid.rb
│ ├── proofs_grid.rb
│ └── statistic
│ │ ├── deposits_grid.rb
│ │ ├── orders_grid.rb
│ │ ├── trades_grid.rb
│ │ └── withdraws_grid.rb
├── helpers
│ ├── application_helper.rb
│ ├── mailer_helper.rb
│ ├── private
│ │ ├── assets_helper.rb
│ │ ├── history_helper.rb
│ │ └── tickets_helper.rb
│ ├── tag_helper.rb
│ └── two_factor_helper.rb
├── inputs
│ └── display_input.rb
├── mailers
│ ├── .gitkeep
│ ├── base_mailer.rb
│ ├── comment_mailer.rb
│ ├── deposit_mailer.rb
│ ├── member_mailer.rb
│ ├── system_mailer.rb
│ ├── ticket_mailer.rb
│ ├── token_mailer.rb
│ └── withdraw_mailer.rb
├── models
│ ├── .gitkeep
│ ├── account.rb
│ ├── account_version.rb
│ ├── active_yaml_base.rb
│ ├── admin
│ │ └── ability.rb
│ ├── amqp_config.rb
│ ├── amqp_queue.rb
│ ├── api_token.rb
│ ├── asset.rb
│ ├── audit
│ │ ├── audit_log.rb
│ │ └── transfer_audit_log.rb
│ ├── authentication.rb
│ ├── bank.rb
│ ├── comment.rb
│ ├── concerns
│ │ ├── aasm_absolutely.rb
│ │ ├── channelable.rb
│ │ ├── currencible.rb
│ │ ├── deposits
│ │ │ ├── bankable.rb
│ │ │ └── coinable.rb
│ │ ├── fund_sourceable.rb
│ │ ├── hash_currencible.rb
│ │ ├── international.rb
│ │ └── withdraws
│ │ │ ├── bankable.rb
│ │ │ └── coinable.rb
│ ├── currency.rb
│ ├── deposit.rb
│ ├── deposit_channel.rb
│ ├── deposits
│ │ ├── bank.rb
│ │ ├── ether.rb
│ │ └── satoshi.rb
│ ├── document.rb
│ ├── fund_source.rb
│ ├── global.rb
│ ├── id_document.rb
│ ├── identity.rb
│ ├── market.rb
│ ├── matching
│ │ ├── constants.rb
│ │ ├── engine.rb
│ │ ├── executor.rb
│ │ ├── limit_order.rb
│ │ ├── market_order.rb
│ │ ├── order_book.rb
│ │ ├── order_book_manager.rb
│ │ └── price_level.rb
│ ├── member.rb
│ ├── member_tag.rb
│ ├── order.rb
│ ├── order_ask.rb
│ ├── order_bid.rb
│ ├── partial_tree.rb
│ ├── payment_address.rb
│ ├── payment_transaction.rb
│ ├── payment_transaction
│ │ └── normal.rb
│ ├── proof.rb
│ ├── running_account.rb
│ ├── signup_history.rb
│ ├── ticket.rb
│ ├── token.rb
│ ├── token
│ │ ├── activation.rb
│ │ └── reset_password.rb
│ ├── trade.rb
│ ├── two_factor.rb
│ ├── two_factor
│ │ ├── app.rb
│ │ ├── email.rb
│ │ ├── sms.rb
│ │ └── wechat.rb
│ ├── withdraw.rb
│ ├── withdraw_channel.rb
│ ├── withdraws
│ │ ├── bank.rb
│ │ ├── ether.rb
│ │ └── satoshi.rb
│ └── worker
│ │ ├── deposit_coin.rb
│ │ ├── deposit_coin_address.rb
│ │ ├── email_notification.rb
│ │ ├── fund_stats.rb
│ │ ├── market_ticker.rb
│ │ ├── matching.rb
│ │ ├── member_stats.rb
│ │ ├── order_processor.rb
│ │ ├── pusher_market.rb
│ │ ├── pusher_member.rb
│ │ ├── slave_book.rb
│ │ ├── sms_notification.rb
│ │ ├── stats.rb
│ │ ├── top_stats.rb
│ │ ├── trade_executor.rb
│ │ ├── trade_stats.rb
│ │ ├── wallet_stats.rb
│ │ └── withdraw_coin.rb
├── observers
│ ├── audit_observer.rb
│ └── transfer_observer.rb
├── services
│ ├── coin_rpc.rb
│ └── ordering.rb
├── uploaders
│ └── file_uploader.rb
├── validators
│ ├── currency_validator.rb
│ ├── email_validator.rb
│ ├── strength_validator.rb
│ ├── ticket_validator.rb
│ └── withdraw_blacklist_validator.rb
└── views
│ ├── activations
│ └── new.html.slim
│ ├── admin
│ ├── currency_deposits
│ │ └── new.html.slim
│ ├── dashboard
│ │ └── index.html.slim
│ ├── deposits
│ │ ├── _deposit.html.slim
│ │ ├── banks
│ │ │ ├── _table.html.slim
│ │ │ ├── index.html.slim
│ │ │ └── show.html.slim
│ │ ├── edit.html.slim
│ │ ├── ethers
│ │ │ └── index.html.slim
│ │ ├── index.html.slim
│ │ └── satoshis
│ │ │ └── index.html.slim
│ ├── documents
│ │ ├── _form.html.slim
│ │ ├── edit.html.slim
│ │ ├── index.html.slim
│ │ └── new.html.slim
│ ├── id_documents
│ │ ├── index.html.slim
│ │ └── show.html.slim
│ ├── members
│ │ ├── index.html.slim
│ │ ├── show.html.slim
│ │ ├── show.json.jbuilder
│ │ └── toggle.js.erb
│ ├── proofs
│ │ ├── edit.html.slim
│ │ └── index.html.slim
│ ├── statistic
│ │ ├── deposits
│ │ │ └── show.html.slim
│ │ ├── members
│ │ │ └── show.html.slim
│ │ ├── orders
│ │ │ └── show.html.slim
│ │ ├── shared
│ │ │ ├── _filter.html.slim
│ │ │ └── _summary.html.slim
│ │ ├── trades
│ │ │ └── show.html.slim
│ │ └── withdraws
│ │ │ └── show.html.slim
│ ├── tickets
│ │ ├── index.html.slim
│ │ └── show.html.slim
│ └── withdraws
│ │ ├── banks
│ │ ├── _table.html.slim
│ │ ├── index.html.slim
│ │ └── show.html.slim
│ │ ├── ethers
│ │ ├── _table.html.slim
│ │ ├── index.html.slim
│ │ └── show.html.slim
│ │ └── satoshis
│ │ ├── _table.html.slim
│ │ ├── index.html.slim
│ │ └── show.html.slim
│ ├── api
│ └── v1
│ │ ├── deeps
│ │ └── show.jbuilder
│ │ ├── prices
│ │ └── show.jbuilder
│ │ ├── tickers
│ │ └── show.jbuilder
│ │ └── trades
│ │ └── show.jbuilder
│ ├── authentications
│ ├── emails
│ │ └── new.html.slim
│ └── identities
│ │ └── new.html.slim
│ ├── comment_mailer
│ ├── admin_notification.html.erb
│ └── user_notification.html.erb
│ ├── datagrid
│ ├── _form.html.erb
│ ├── _head.html.erb
│ ├── _order_for.html.erb
│ ├── _row.html.erb
│ └── _table.html.erb
│ ├── deposit_mailer
│ └── accepted.html.erb
│ ├── documents
│ ├── api_v2.en.html.slim
│ ├── api_v2.zh-CN.html.slim
│ ├── oauth.en.html.slim
│ ├── oauth.zh-CN.html.slim
│ ├── show.html.slim
│ └── websocket_api.html.slim
│ ├── doorkeeper
│ └── authorizations
│ │ └── new.html.erb
│ ├── errors
│ └── connection.html.slim
│ ├── identities
│ ├── edit.html.slim
│ └── new.html.slim
│ ├── kaminari
│ ├── _first_page.html.slim
│ ├── _gap.html.slim
│ ├── _last_page.html.slim
│ ├── _next_page.html.slim
│ ├── _page.html.slim
│ ├── _paginator.html.slim
│ └── _prev_page.html.slim
│ ├── layouts
│ ├── admin.html.slim
│ ├── api_v2.html.slim
│ ├── application.html.slim
│ ├── funds.html.erb
│ ├── landing.html.slim
│ └── mailers
│ │ ├── application.html.erb
│ │ └── system.html.erb
│ ├── member_mailer
│ ├── google_auth_activated.html.erb
│ ├── google_auth_deactivated.html.erb
│ ├── notify_signin.html.erb
│ ├── phone_number_verified.html.erb
│ ├── reset_password_done.html.erb
│ ├── sms_auth_activated.html.erb
│ └── sms_auth_deactivated.html.erb
│ ├── members
│ └── edit.html.slim
│ ├── private
│ ├── account_versions
│ │ └── index.html.slim
│ ├── api_tokens
│ │ ├── _oauth_tokens.html.slim
│ │ ├── _user_tokens.html.slim
│ │ ├── create.html.slim
│ │ ├── edit.html.slim
│ │ ├── index.html.slim
│ │ └── new.html.slim
│ ├── assets
│ │ ├── _btc_assets.html.slim
│ │ ├── _cny_assets.html.slim
│ │ ├── _liability_data.html.slim
│ │ ├── _liability_proof.html.slim
│ │ ├── _liability_tabs.html.slim
│ │ ├── index.html.slim
│ │ └── partial_tree.js.erb
│ ├── funds
│ │ ├── index.html.erb
│ │ └── index.json.jbuilder
│ ├── history
│ │ ├── _order.html.slim
│ │ ├── _tabs.html.slim
│ │ ├── _trade.html.slim
│ │ ├── _transaction.html.slim
│ │ ├── account.html.slim
│ │ ├── orders.html.slim
│ │ └── trades.html.slim
│ ├── id_documents
│ │ └── edit.html.slim
│ ├── markets
│ │ ├── _account_summary.html.slim
│ │ ├── _ask_entry.html.slim
│ │ ├── _balance.html.slim
│ │ ├── _bid_entry.html.slim
│ │ ├── _candlestick.html.slim
│ │ ├── _chat.html.slim
│ │ ├── _depths.html.slim
│ │ ├── _header.html.slim
│ │ ├── _indicator_switch.html.slim
│ │ ├── _language.html.slim
│ │ ├── _market_list.html.slim
│ │ ├── _market_trades.html.slim
│ │ ├── _mask.html.slim
│ │ ├── _my_orders.html.slim
│ │ ├── _order_book.html.slim
│ │ ├── _range_switch.html.slim
│ │ ├── _settings.html.slim
│ │ ├── _status.html.slim
│ │ ├── _ticker.html.slim
│ │ ├── show.html.slim
│ │ └── show.json.jbuilder
│ ├── settings
│ │ └── index.html.slim
│ ├── shared
│ │ └── _balances.html.slim
│ ├── tickets
│ │ ├── index.html.slim
│ │ ├── new.html.slim
│ │ └── show.html.slim
│ └── withdraws
│ │ ├── ethers
│ │ ├── edit.html.slim
│ │ └── new.html.slim
│ │ ├── index.html.slim
│ │ └── satoshis
│ │ ├── edit.html.slim
│ │ └── new.html.slim
│ ├── reset_passwords
│ ├── edit.html.slim
│ └── new.html.slim
│ ├── sessions
│ └── new.html.slim
│ ├── shared
│ ├── _alert.html.slim
│ ├── _document.html.slim
│ ├── _flash.slim
│ ├── _footer.html.slim
│ ├── _frame.html.slim
│ ├── _header.html.slim
│ ├── _header_account_balance.html.slim
│ ├── _header_lang_sel.html.slim
│ ├── _header_profile_setting.html.slim
│ ├── _html5.html.slim
│ ├── _meta.html.slim
│ ├── _two_factor_app.html.slim
│ ├── _two_factor_app_and_sms.html.slim
│ ├── _two_factor_auth.html.slim
│ ├── _two_factor_sms.html.slim
│ ├── admin
│ │ ├── _account.html.slim
│ │ ├── _member.html.slim
│ │ └── _member_accounts.html.slim
│ └── market
│ │ ├── _chart.html.slim
│ │ ├── _market_sel.html.slim
│ │ └── _ticker.html.slim
│ ├── simple_captcha
│ └── _simple_captcha.erb
│ ├── system_mailer
│ ├── balance_warning.text.erb
│ ├── daily_stats.html.erb
│ ├── order_processor_error.text.erb
│ └── trade_execute_error.text.erb
│ ├── ticket_mailer
│ ├── admin_notification.html.erb
│ └── author_notification.html.erb
│ ├── token_mailer
│ ├── activation.html.erb
│ └── reset_password.html.erb
│ ├── two_factors
│ └── index.html.slim
│ ├── verify
│ ├── google_auths
│ │ ├── edit.html.slim
│ │ └── show.html.slim
│ └── sms_auths
│ │ └── show.html.slim
│ ├── welcome
│ └── index.html.slim
│ └── withdraw_mailer
│ ├── done.html.erb
│ ├── processing.html.erb
│ ├── submitted.html.erb
│ └── withdraw_state.html.erb
├── bin
├── bundle
├── concurrent_create_order_benchmark.rb
├── init_config
├── rails
├── rake
├── rspec
└── transifex
├── config.ru
├── config
├── amqp.yml.example
├── application.rb
├── application.yml.example
├── banks.yml.example
├── boot.rb
├── currencies.yml.example
├── daemons.yml
├── database.yml.example
├── deploy.rb
├── deposit_channels.yml
├── environment.rb
├── environments
│ ├── development.rb
│ ├── production.rb
│ └── test.rb
├── initializers
│ ├── action_controller.rb
│ ├── activerecord.rb
│ ├── backtrace_silencers.rb
│ ├── carrierwave.rb
│ ├── check_env.rb
│ ├── datagrid
│ │ └── filters
│ │ │ └── date_time_filter.rb
│ ├── date_time_format.rb
│ ├── dirty_ext.rb
│ ├── doorkeeper.rb
│ ├── easy_table.rb
│ ├── filter_parameter_logging.rb
│ ├── inflections.rb
│ ├── kaminari_config.rb
│ ├── mime_types.rb
│ ├── mysql2_adapter.rb
│ ├── omniauth.rb
│ ├── pusher.rb
│ ├── secret_token.rb
│ ├── simple_form.rb
│ ├── simple_form_bootstrap.rb
│ ├── string_extend.rb
│ ├── withdraw_blacklist.rb
│ └── wrap_parameters.rb
├── locales
│ ├── client.cs.yml
│ ├── client.de.yml
│ ├── client.el.yml
│ ├── client.en.yml
│ ├── client.it.yml
│ ├── client.ko.yml
│ ├── client.ru_RU.yml
│ ├── client.zh-CN.yml
│ ├── client.zh-TW.yml
│ ├── custom
│ │ ├── client.en.yml
│ │ ├── client.zh-CN.yml
│ │ ├── server.en.yml
│ │ └── server.zh-CN.yml
│ ├── server.cs.yml
│ ├── server.de.yml
│ ├── server.el.yml
│ ├── server.en.yml
│ ├── server.it.yml
│ ├── server.ko.yml
│ ├── server.ru_RU.yml
│ ├── server.zh-CN.yml
│ └── server.zh-TW.yml
├── logrotate.conf
├── maintenance.sh
├── markets.yml.example
├── member_tags.yml
├── nginx.conf
├── nginx_maintenance.conf
├── routes.rb
├── routes
│ └── admin.rb
├── schedule.rb
├── slack.yml.example
└── withdraw_channels.yml
├── db
├── migrate
│ ├── 20130624011823_create_members.rb
│ ├── 20130629015414_create_identities.rb
│ ├── 20130810162023_create_reset_passwords.rb
│ ├── 20130901010953_create_orders.rb
│ ├── 20130901154530_create_trades.rb
│ ├── 20130903080937_create_account_versions.rb
│ ├── 20130904215802_add_is_active_to_two_factors.rb
│ ├── 20130905025823_fix_account_id_by_reset_pin.rb
│ ├── 20130905132250_add_balance_to_account_versions.rb
│ ├── 20130906073020_create_payment_addresses.rb
│ ├── 20130906073931_create_payment_transactions.rb
│ ├── 20130907110146_create_withdraws.rb
│ ├── 20130907124647_create_deposits.rb
│ ├── 20130912144526_add_receive_at_to_payment_transactions.rb
│ ├── 20130915150504_add_payment_id_to_withdraws.rb
│ ├── 20130918143551_add_ref_to_account_versions.rb
│ ├── 20130919091853_add_sn_to_orders.rb
│ ├── 20130925154257_change_to_enumerize_in_orders.rb
│ ├── 20130925165804_change_to_enumerize_in_trades.rb
│ ├── 20130925171856_change_to_enumerize_in_accounts.rb
│ ├── 20130925175113_change_to_enumerize_in_deposits.rb
│ ├── 20130926011813_change_to_enumerize_in_payment_transactions.rb
│ ├── 20130926014845_change_to_enumerize_in_withdraws.rb
│ ├── 20130926075355_change_to_enumerize_in_account_versions.rb
│ ├── 20130926170008_change_ref_to_text_in_account_versions.rb
│ ├── 20130928080757_create_account_logs.rb
│ ├── 20130928113620_delete_table_account_versions.rb
│ ├── 20130928122042_rename_account_logs_to_account_versions.rb
│ ├── 20130928165236_add_alipay_to_members.rb
│ ├── 20130928190156_rename_member_id_to_identity_id.rb
│ ├── 20130928194048_add_alipay_address_to_members.rb
│ ├── 20130929012418_create_invitations.rb
│ ├── 20130930172651_rebuild_withdraws.rb
│ ├── 20130930183833_migrate_withdraw_addresses.rb
│ ├── 20131001103847_add_deleted_at_to_withdraw_addresses.rb
│ ├── 20131002012809_add_fee_to_withdraws.rb
│ ├── 20131002190141_rebuild_deposits.rb
│ ├── 20131003003357_add_address_to_deposits.rb
│ ├── 20131003021225_rename_txid_to_payment_transactions.rb
│ ├── 20131006183340_create_tokens.rb
│ ├── 20131009132505_create_documents.rb
│ ├── 20131022035138_add_in_out_to_accounts.rb
│ ├── 20131027012836_change_in_out_to_accounts.rb
│ ├── 20131110214254_add_currency_to_payment_transactions.rb
│ ├── 20131130190923_remove_pin_digest_from_identities.rb
│ ├── 20131201011127_drop_reset_pins.rb
│ ├── 20131204020953_add_currency_to_account_versions.rb
│ ├── 20131208012814_fix_payment_address_currency.rb
│ ├── 20131224162832_add_sn_to_withdraws.rb
│ ├── 20140101175408_add_fee_to_account_versions.rb
│ ├── 20140102024125_add_fun_to_account_versions.rb
│ ├── 20140102172835_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb
│ ├── 20140102172836_add_missing_unique_indices.acts_as_taggable_on_engine.rb
│ ├── 20140105034746_drop_reset_passwords.rb
│ ├── 20140302094520_rename_identity_id_to_member_id.rb
│ ├── 20140302094729_migration_data_identity_id_to_member_id.rb
│ ├── 20140302161905_create_authentications.rb
│ ├── 20140303060739_add_activated_to_members.rb
│ ├── 20140303080054_rename_is_active_to_activated.rb
│ ├── 20140304015055_create_documents_translations.rb
│ ├── 20140306020939_create_id_documents.rb
│ ├── 20140306021833_add_verified_to_id_documents.rb
│ ├── 20140312061206_add_aasm_state_to_withdraws.rb
│ ├── 20140312071704_add_sum_to_withdraws.rb
│ ├── 20140319022202_add_partial_tree_to_accounts.rb
│ ├── 20140319022302_create_proofs.rb
│ ├── 20140320142701_create_versions.rb
│ ├── 20140324060148_rename_withdraw_addresses_to_fund_sources.rb
│ ├── 20140324062812_rename_address_column_by_withdraws.rb
│ ├── 20140326170234_change_deposits.rb
│ ├── 20140326191837_add_deposit_id_to_payment_transactions.rb
│ ├── 20140327044440_change_withdraws.rb
│ ├── 20140327062025_add_memo_and_remove_fund_source_to_deposits.rb
│ ├── 20140327065708_rename_fund_sources_category_to_channel_id.rb
│ ├── 20140327105217_remove_fund_sources_account_id.rb
│ ├── 20140328101707_add_type_to_deposits.rb
│ ├── 20140329070543_remove_channel_id.rb
│ ├── 20140331084541_fund_sources_is_locked_default_to_false.rb
│ ├── 20140402043033_create_partial_trees.rb
│ ├── 20140403031847_create_api_tokens.rb
│ ├── 20140403070840_add_type_to_withdraws.rb
│ ├── 20140404074816_add_currency_index_to_trades.rb
│ ├── 20140404101823_add_ask_member_id_and_bid_member_id_to_trades.rb
│ ├── 20140405053744_remove_withdraws_state_and_channel_id.rb
│ ├── 20140407011310_add_source_to_orders.rb
│ ├── 20140416143239_add_country_code_to_members.rb
│ ├── 20140416143352_add_phone_number_to_members.rb
│ ├── 20140416151403_add_phone_number_verified_to_members.rb
│ ├── 20140416194209_remove_table_invitations.rb
│ ├── 20140416194300_remove_table_members_trades.rb
│ ├── 20140418082715_add_sum_to_proofs.rb
│ ├── 20140421061712_add_index_on_accounts.rb
│ ├── 20140421080408_add_type_to_two_factors.rb
│ ├── 20140428203350_add_desc_and_keyword_to_documents.rb
│ ├── 20140507120249_add_addresses_to_proofs.rb
│ ├── 20140524014413_add_ord_type_to_orders.rb
│ ├── 20140530133210_add_locked_to_orders.rb
│ ├── 20140531054739_add_used_funds_to_trades.rb
│ ├── 20140618004355_add_displayname_to_members.rb
│ ├── 20140702035833_add_balance_to_proofs.rb
│ ├── 20140703065321_add_order_id_indices_to_trades.rb
│ ├── 20140703070953_add_funds_received_to_orders.rb
│ ├── 20140707115022_create_audit_logs.rb
│ ├── 20140709084906_create_tickets.rb
│ ├── 20140709085158_create_comments.rb
│ ├── 20140712030803_add_disabled_to_members.rb
│ ├── 20140714143823_unread_migration.rb
│ ├── 20140715002401_add_more_fields_to_id_documents_table.rb
│ ├── 20140715040545_remove_name_field_from_members_table.rb
│ ├── 20140715083857_add_aasm_state_to_id_document.rb
│ ├── 20140717033231_add_assets_table.rb
│ ├── 20140718134132_rename_id_documents_column_category_to_id_document_type.rb
│ ├── 20140718141345_rename_id_documents_column_from_sn_to_id_document_number.rb
│ ├── 20140721125900_remove_column_verified_from_id_documents.rb
│ ├── 20140724033014_add_trusted_ip_list_to_api_tokens.rb
│ ├── 20140803202610_remove_channel_id_from_fund_sources.rb
│ ├── 20140804002557_add_api_disabled_to_members.rb
│ ├── 20140804151249_change_default_of_withdrao_fee.rb
│ ├── 20140806141035_add_index_to_orders.rb
│ ├── 20140806141419_add_index_to_trades.rb
│ ├── 20140819085359_add_index_to_order_state.rb
│ ├── 20140819090417_add_index_on_orders_member_id_and_state.rb
│ ├── 20140826083906_add_label_to_api_token.rb
│ ├── 20140826093508_add_refreshed_at_to_two_factors.rb
│ ├── 20140902112641_create_simple_captcha_data.rb
│ ├── 20140920062130_add_type_to_payment_transactions.rb
│ ├── 20141002075102_add_tx_out_to_payment_transactions.rb
│ ├── 20141003040822_add_payment_transaction_id_to_deposits.rb
│ ├── 20141003061259_add_txout_to_deposits.rb
│ ├── 20141010083930_remove_phone_number_verified_from_members.rb
│ ├── 20141012124243_set_token_is_used_to_false_as_default.rb
│ ├── 20141014085101_add_nickname_to_members.rb
│ ├── 20141015034040_add_nickname_to_authentications.rb
│ ├── 20141105023306_create_doorkeeper_tables.rb
│ ├── 20141105090746_add_oauth_columns_to_api_tokens.rb
│ ├── 20141107031140_add_deleted_at_to_api_tokens_and_oauth_tokens.rb
│ ├── 20141119155043_create_running_accounts.rb
│ ├── 20141203042029_rename_deposits_memo_to_confirmations.rb
│ ├── 20141216120736_add_trades_count_to_orders.rb
│ ├── 20150117151634_add_signup_histories.rb
│ ├── 20150205011423_add_account_id_index_on_account_versions.rb
│ └── 20150405053726_add_default_withdraw_fund_source_id_to_accounts.rb
├── schema.rb
└── seeds.rb
├── doc
├── AWS.md
├── README.md
├── bitgo.md
├── currency.md
├── deploy-production-server.md
├── docker
│ ├── Dockerfile
│ ├── bin
│ │ ├── base.sh
│ │ └── webapp.sh
│ └── conf
│ │ ├── nginx-peatio-env.conf
│ │ ├── nginx-peatio-with-ssl.conf
│ │ ├── rails-amqp.yml
│ │ ├── rails-application.yml
│ │ └── rails-database.yml
├── eth.md
├── setup-local-osx.md
└── setup-local-ubuntu.md
├── eth
├── default
├── filter.service
├── geth.service
├── restart.cgi
├── service.rb
├── total.cgi
└── total.js
├── lib
├── aasm
│ └── locking.rb
├── assets
│ └── .gitkeep
├── benchmark
│ ├── amqp_mock.rb
│ ├── execution.rb
│ ├── helpers.rb
│ ├── integration.rb
│ ├── matching.rb
│ └── sweat_factory.rb
├── daemons
│ ├── amqp_daemon.rb
│ ├── daemons
│ ├── deposit_coin_ctl
│ ├── global_state.rb
│ ├── global_state_ctl
│ ├── hot_wallets.rb
│ ├── hot_wallets_ctl
│ ├── k.rb
│ ├── k_ctl
│ ├── market_data_ctl
│ ├── matching_ctl
│ ├── notification_ctl
│ ├── order_processor_ctl
│ ├── payment_transaction.rb
│ ├── payment_transaction_ctl
│ ├── pusher_ctl
│ ├── stats.rb
│ ├── stats_ctl
│ ├── trade_executor_ctl
│ ├── websocket_api.rb
│ ├── websocket_api_ctl
│ ├── withdraw_audit.rb
│ ├── withdraw_audit_ctl
│ └── withdraw_coin_ctl
├── datagrid
│ ├── column_i18n.rb
│ └── naming.rb
├── doorkeeper
│ └── access_token.rb
├── extras
│ └── simple_form_extensions.rb
├── generators
│ ├── deposit
│ │ ├── USAGE
│ │ ├── deposit_generator.rb
│ │ └── templates
│ │ │ ├── controller.rb.erb
│ │ │ ├── locales
│ │ │ ├── en.yml.erb
│ │ │ └── zh-CN.yml.erb
│ │ │ ├── model.rb.erb
│ │ │ └── views
│ │ │ └── new.html.slim.erb
│ └── withdraw
│ │ ├── USAGE
│ │ ├── templates
│ │ ├── controller.rb.erb
│ │ ├── locales
│ │ │ ├── en.yml.erb
│ │ │ └── zh-CN.yml.erb
│ │ ├── model.rb.erb
│ │ └── views
│ │ │ ├── edit.html.slim.erb
│ │ │ └── new.html.slim.erb
│ │ └── withdraw_generator.rb
├── js_locale_helper.rb
├── kline_db.rb
├── market_constraint.rb
├── middleware
│ ├── i18n_js.rb
│ └── security.rb
├── peatio
│ └── version.rb
├── tasks
│ ├── .gitkeep
│ ├── benchmark.rake
│ ├── coin.rake
│ ├── deploy.rake
│ ├── emu.rake
│ ├── install.rake
│ ├── migration.rake
│ ├── order.rake
│ ├── replay.rake
│ ├── solvency.rake
│ └── stats.rake
└── templates
│ └── slim
│ └── scaffold
│ └── _form.html.slim
├── peatio-installer-using-vagrant.sh
├── peatio-run-daemons.sh
├── public
├── 404.html
├── 422.html
├── 500.html
├── 502.html
├── ZeroClipboard.swf
├── btsx.chongzhi.yunbi.png
├── favicon.ico
├── icon-btc.png
├── icon-cny.png
├── icon-eth.png
├── icon-pts.png
├── languages
│ ├── en.png
│ ├── ko.png
│ └── zh-CN.png
├── peatio-notification-logo.png
├── peatio.png
├── robots.txt
├── sounds
│ ├── success.mp3
│ └── warning.mp3
├── templates
│ ├── fund_sources
│ │ ├── bank.html
│ │ └── coin.html
│ ├── funds
│ │ ├── _address.html
│ │ ├── _coin_withdraw.html
│ │ ├── _deposit_coin.html
│ │ ├── _deposit_coin_history.html
│ │ ├── _flash.html
│ │ ├── _qrcode.html
│ │ ├── _two_factor_auth.html
│ │ ├── accounts.html
│ │ ├── deposit.html
│ │ ├── deposit_btc.html
│ │ ├── deposit_cny.html
│ │ ├── deposit_eth.html
│ │ ├── deposits.html
│ │ ├── withdraw.html
│ │ ├── withdraw_btc.html
│ │ ├── withdraw_cny.html
│ │ ├── withdraw_eth.html
│ │ └── withdraws.html
│ └── shared
│ │ └── confirm_dialog.html
└── throbber.gif
├── rails.sh
├── script
└── pre-commit.sh
├── server.sh
├── spec
├── api
│ └── api_v2
│ │ ├── auth
│ │ ├── authenticator_spec.rb
│ │ ├── middleware_spec.rb
│ │ └── utils_spec.rb
│ │ ├── deposits_spec.rb
│ │ ├── entities
│ │ ├── account_spec.rb
│ │ ├── member_spec.rb
│ │ ├── order_spec.rb
│ │ └── trade_spec.rb
│ │ ├── helpers_spec.rb
│ │ ├── markets_spec.rb
│ │ ├── members_spec.rb
│ │ ├── mount_spec.rb
│ │ ├── order_books_spec.rb
│ │ ├── orders_spec.rb
│ │ ├── tickers_spec.rb
│ │ └── trades_spec.rb
├── controllers
│ ├── activations_controller_spec.rb
│ ├── admin
│ │ ├── id_documents_controller_spec.rb
│ │ ├── members_controller_spec.rb
│ │ └── two_factors_spec.rb
│ ├── application_controller_spec.rb
│ ├── authentications
│ │ ├── emails_controller_spec.rb
│ │ └── identities_controller_spec.rb
│ ├── private
│ │ ├── assets_controller_spec.rb
│ │ ├── fund_sources_controller_spec.rb
│ │ ├── funds_controller_spec.rb
│ │ ├── id_documents_controller_spec.rb
│ │ ├── markets_controller_spec.rb
│ │ ├── order_asks_controller_spec.rb
│ │ ├── order_bids_controller_spec.rb
│ │ └── settings_controller_spec.rb
│ ├── reset_password_controller_spec.rb
│ ├── two_factors_controller_spec.rb
│ └── verify
│ │ ├── google_auths_controller_spec.rb
│ │ └── sms_auths_controller_spec.rb
├── factories
│ ├── account.rb
│ ├── api_tokens.rb
│ ├── authentications.rb
│ ├── comments.rb
│ ├── deposits.rb
│ ├── documents.rb
│ ├── fund_source.rb
│ ├── id_document.rb
│ ├── identity.rb
│ ├── member.rb
│ ├── orders.rb
│ ├── partial_trees.rb
│ ├── payment_addresses.rb
│ ├── payment_transactions.rb
│ ├── proofs.rb
│ ├── tickets.rb
│ ├── token.rb
│ ├── trade.rb
│ ├── two_factor.rb
│ └── withdraw.rb
├── features
│ ├── admin
│ │ └── withdraw_spec.rb
│ ├── market_spec.rb
│ ├── market_trade_history_spec.rb
│ ├── reset_password_spec.rb
│ ├── sign_in_spec.rb
│ ├── sign_up_spec.rb
│ ├── tag_spec.rb
│ ├── two_factor_auth_spec.rb
│ └── withdraw_spec.rb
├── fixtures
│ ├── banks.yml
│ ├── currencies.yml
│ ├── deposit_channels.yml
│ ├── markets.yml
│ ├── member_tags.yml
│ └── withdraw_channels.yml
├── helpers
│ ├── private
│ │ └── assets_helper_spec.rb
│ └── two_factor_helper_spec.rb
├── lib
│ └── doorkeeper
│ │ └── access_token_spec.rb
├── mailers
│ ├── deposit_mailer_spec.rb
│ ├── member_mailer_spec.rb
│ └── withdraw_mailer_spec.rb
├── models
│ ├── account_spec.rb
│ ├── account_version_spec.rb
│ ├── amqp_config_spec.rb
│ ├── amqp_queue_spec.rb
│ ├── api_token_spec.rb
│ ├── audit
│ │ └── transfer_audit_log_spec.rb
│ ├── bank_spec.rb
│ ├── comment_spec.rb
│ ├── deposit_channel_spec.rb
│ ├── deposit_spec.rb
│ ├── documnet_spec.rb
│ ├── fund_source_spec.rb
│ ├── global_spec.rb
│ ├── id_document_spec.rb
│ ├── identity_spec.rb
│ ├── market_spec.rb
│ ├── matching
│ │ ├── engine_spec.rb
│ │ ├── executor_spec.rb
│ │ ├── limit_order_spec.rb
│ │ ├── market_order_spec.rb
│ │ ├── order_book_manager_spec.rb
│ │ ├── order_book_spec.rb
│ │ └── price_level_spec.rb
│ ├── member_spec.rb
│ ├── order_ask_spec.rb
│ ├── order_bid_spec.rb
│ ├── order_spec.rb
│ ├── partial_tree_spec.rb
│ ├── payment_address_spec.rb
│ ├── payment_transaction_spec.rb
│ ├── proof_spec.rb
│ ├── ticket_spec.rb
│ ├── token
│ │ ├── activation_spec.rb
│ │ └── reset_password_spec.rb
│ ├── trade_spec.rb
│ ├── two_factor
│ │ ├── app_spec.rb
│ │ └── sms_spec.rb
│ ├── withdraw_spec.rb
│ └── worker
│ │ ├── deposit_coin_spec.rb
│ │ ├── matching_spec.rb
│ │ └── slave_book_spec.rb
├── observers
│ └── transfer_observer_spec.rb
├── routing
│ ├── admin
│ │ ├── members_spec.rb
│ │ └── two_factors_spec.rb
│ ├── trade_spec.rb
│ ├── two_factors_spec.rb
│ └── verify
│ │ ├── google_auths_spec.rb
│ │ └── sms_auths_spec.rb
├── services
│ ├── coin_rpc_spec.rb
│ └── ordering_spec.rb
├── spec_helper.rb
└── support
│ ├── api_helper.rb
│ ├── cookie_helper.rb
│ ├── deposit_helper.rb
│ ├── i18n_helper.rb
│ ├── login_helper.rb
│ ├── matching_helper.rb
│ ├── pusher.rb
│ ├── rspec_matchers.rb
│ └── two_factor_helper.rb
└── vendor
├── assets
├── javascripts
│ ├── ZeroClipboard.js
│ ├── bignumber.js
│ ├── bootstrap-datetimepicker.js
│ ├── bootstrap-switch.min.js
│ ├── cookies.min.js
│ ├── es5-sham.min.js
│ ├── es5-shim.min.js
│ ├── flight.min.js
│ ├── highstock.js
│ ├── html5shiv.js
│ ├── i18n.js
│ ├── jquery-timing.min.js
│ ├── jquery.mousewheel.js
│ ├── jquery.nicescroll.min.js
│ ├── list.js
│ ├── ngDialog
│ │ └── ngDialog.js
│ ├── pusher.min.js
│ ├── qrcode.js
│ ├── respond.min.js
│ ├── scrollIt.js
│ ├── underscore.js
│ └── wysihtml5.js
└── stylesheets
│ ├── bootstrap-datetimepicker.css
│ ├── bootstrap-switch.min.css
│ ├── csshake.min.css
│ ├── ngDialog
│ ├── ngDialog-theme-default.css
│ ├── ngDialog-theme-plain.css
│ └── ngDialog.css
│ ├── selectize.bootstrap3.scss
│ ├── selectize.default.scss
│ └── selectize.scss
└── plugins
└── .gitkeep
/.github/workflows/no-links.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/.github/workflows/no-links.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/.gitignore
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/CHANGELOG.md
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/Gemfile
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/Gemfile.lock
--------------------------------------------------------------------------------
/Guardfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/Guardfile
--------------------------------------------------------------------------------
/PEATIO-INSTALLER-ONE.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/PEATIO-INSTALLER-ONE.sh
--------------------------------------------------------------------------------
/PEATIO-INSTALLER-THREE.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/PEATIO-INSTALLER-THREE.sh
--------------------------------------------------------------------------------
/PEATIO-INSTALLER-TWO.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/PEATIO-INSTALLER-TWO.sh
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/README.md
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/Rakefile
--------------------------------------------------------------------------------
/app/api/api_v2/auth/authenticator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/auth/authenticator.rb
--------------------------------------------------------------------------------
/app/api/api_v2/auth/middleware.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/auth/middleware.rb
--------------------------------------------------------------------------------
/app/api/api_v2/auth/utils.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/auth/utils.rb
--------------------------------------------------------------------------------
/app/api/api_v2/constraints.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/constraints.rb
--------------------------------------------------------------------------------
/app/api/api_v2/deposits.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/deposits.rb
--------------------------------------------------------------------------------
/app/api/api_v2/entities/account.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/entities/account.rb
--------------------------------------------------------------------------------
/app/api/api_v2/entities/base.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/entities/base.rb
--------------------------------------------------------------------------------
/app/api/api_v2/entities/deposit.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/entities/deposit.rb
--------------------------------------------------------------------------------
/app/api/api_v2/entities/market.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/entities/market.rb
--------------------------------------------------------------------------------
/app/api/api_v2/entities/member.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/entities/member.rb
--------------------------------------------------------------------------------
/app/api/api_v2/entities/order.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/entities/order.rb
--------------------------------------------------------------------------------
/app/api/api_v2/entities/order_book.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/entities/order_book.rb
--------------------------------------------------------------------------------
/app/api/api_v2/entities/trade.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/entities/trade.rb
--------------------------------------------------------------------------------
/app/api/api_v2/errors.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/errors.rb
--------------------------------------------------------------------------------
/app/api/api_v2/helpers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/helpers.rb
--------------------------------------------------------------------------------
/app/api/api_v2/k.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/k.rb
--------------------------------------------------------------------------------
/app/api/api_v2/markets.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/markets.rb
--------------------------------------------------------------------------------
/app/api/api_v2/members.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/members.rb
--------------------------------------------------------------------------------
/app/api/api_v2/mount.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/mount.rb
--------------------------------------------------------------------------------
/app/api/api_v2/named_params.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/named_params.rb
--------------------------------------------------------------------------------
/app/api/api_v2/order_books.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/order_books.rb
--------------------------------------------------------------------------------
/app/api/api_v2/orders.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/orders.rb
--------------------------------------------------------------------------------
/app/api/api_v2/tickers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/tickers.rb
--------------------------------------------------------------------------------
/app/api/api_v2/tools.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/tools.rb
--------------------------------------------------------------------------------
/app/api/api_v2/trades.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/trades.rb
--------------------------------------------------------------------------------
/app/api/api_v2/validations.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/validations.rb
--------------------------------------------------------------------------------
/app/api/api_v2/websocket_protocol.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/api/api_v2/websocket_protocol.rb
--------------------------------------------------------------------------------
/app/assets/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/images/favicon.ico
--------------------------------------------------------------------------------
/app/assets/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/images/logo.png
--------------------------------------------------------------------------------
/app/assets/javascripts/admin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/admin.js
--------------------------------------------------------------------------------
/app/assets/javascripts/admin/app.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/admin/app.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/api_v2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/api_v2.js
--------------------------------------------------------------------------------
/app/assets/javascripts/application.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/application.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/component_ui/range_switch.js.coffee:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/assets/javascripts/funds.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/funds.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/funds/events.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/funds/events.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/funds/funds.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/funds/funds.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/funds/models/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/assets/javascripts/funds/router.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/funds/router.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/helpers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/assets/javascripts/helpers/formatter.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/helpers/formatter.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/highcharts/config.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/highcharts/config.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/html5.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/html5.js
--------------------------------------------------------------------------------
/app/assets/javascripts/lib/ajax.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/lib/ajax.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/lib/angular-ui-router.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/lib/angular-ui-router.js
--------------------------------------------------------------------------------
/app/assets/javascripts/lib/notifier.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/lib/notifier.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/lib/peatio_model.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/lib/peatio_model.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/lib/sfx.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/lib/sfx.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/lib/tiny-pubsub.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/lib/tiny-pubsub.js
--------------------------------------------------------------------------------
/app/assets/javascripts/locales/en.js.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/locales/en.js.erb
--------------------------------------------------------------------------------
/app/assets/javascripts/locales/zh-CN.js.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/locales/zh-CN.js.erb
--------------------------------------------------------------------------------
/app/assets/javascripts/market.js.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/market.js.coffee
--------------------------------------------------------------------------------
/app/assets/javascripts/swagger-ui/lib/swagger.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/swagger-ui/lib/swagger.js
--------------------------------------------------------------------------------
/app/assets/javascripts/swagger-ui/swagger-ui.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/swagger-ui/swagger-ui.js
--------------------------------------------------------------------------------
/app/assets/javascripts/templates/hint_order_success.jst.eco:
--------------------------------------------------------------------------------
1 |
2 | <%= @msg %>
3 |
4 |
--------------------------------------------------------------------------------
/app/assets/javascripts/templates/hint_order_warning.jst.eco:
--------------------------------------------------------------------------------
1 |
2 | <%= @msg %>
3 |
4 |
--------------------------------------------------------------------------------
/app/assets/javascripts/templates/my_trade.jst.eco:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/templates/my_trade.jst.eco
--------------------------------------------------------------------------------
/app/assets/javascripts/templates/tooltip.jst.eco:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/javascripts/templates/tooltip.jst.eco
--------------------------------------------------------------------------------
/app/assets/stylesheets/admin.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/admin.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/api_v2.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/api_v2.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/application.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/application.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/custom/market.css.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/assets/stylesheets/features/_assets.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/features/_assets.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/features/_custom.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/features/_custom.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/features/_documents.css.scss:
--------------------------------------------------------------------------------
1 | #documents-show {
2 | .panel-body { word-wrap: break-word; }
3 | }
4 |
--------------------------------------------------------------------------------
/app/assets/stylesheets/features/_history.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/features/_history.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/features/_market.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/features/_market.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/features/_welcome.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/features/_welcome.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/features/funds.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/features/funds.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/layouts/_basic.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/layouts/_basic.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/layouts/_custom.css.scss:
--------------------------------------------------------------------------------
1 | #kline_chart {
2 | .panel-body { padding: 0; }
3 | }
4 |
--------------------------------------------------------------------------------
/app/assets/stylesheets/layouts/_header.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/layouts/_header.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/market.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/market.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/market_light.css.scss:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/assets/stylesheets/swagger-ui/screen.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/swagger-ui/screen.css
--------------------------------------------------------------------------------
/app/assets/stylesheets/vars/_basic.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/vars/_basic.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/vars/_bootstrap.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/vars/_bootstrap.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/vars/_custom.css.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/assets/stylesheets/vars/_market.css.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/assets/stylesheets/vars/_market.css.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/vars/_market_light.css.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/controllers/activations_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/activations_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/base_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/base_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/comments_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/comments_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/dashboard_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/dashboard_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/deposits/banks_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/deposits/banks_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/deposits/base_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/deposits/base_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/deposits_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/deposits_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/documents_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/documents_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/id_documents_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/id_documents_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/members_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/members_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/proofs_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/proofs_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/statistic/base_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/statistic/base_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/tickets_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/tickets_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/two_factors_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/two_factors_controller.rb
--------------------------------------------------------------------------------
/app/controllers/admin/withdraws/base_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/admin/withdraws/base_controller.rb
--------------------------------------------------------------------------------
/app/controllers/application_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/application_controller.rb
--------------------------------------------------------------------------------
/app/controllers/concerns/deposits/ctrl_bankable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/concerns/deposits/ctrl_bankable.rb
--------------------------------------------------------------------------------
/app/controllers/concerns/deposits/ctrl_coinable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/concerns/deposits/ctrl_coinable.rb
--------------------------------------------------------------------------------
/app/controllers/concerns/order_creation.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/concerns/order_creation.rb
--------------------------------------------------------------------------------
/app/controllers/concerns/token_management.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/concerns/token_management.rb
--------------------------------------------------------------------------------
/app/controllers/concerns/withdraws/withdrawable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/concerns/withdraws/withdrawable.rb
--------------------------------------------------------------------------------
/app/controllers/documents_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/documents_controller.rb
--------------------------------------------------------------------------------
/app/controllers/identities_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/identities_controller.rb
--------------------------------------------------------------------------------
/app/controllers/members_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/members_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/api_tokens_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/api_tokens_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/assets_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/assets_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/base_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/base_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/comments_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/comments_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/fund_sources_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/fund_sources_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/funds_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/funds_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/history_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/history_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/id_documents_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/id_documents_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/markets_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/markets_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/order_asks_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/order_asks_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/order_bids_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/order_bids_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/orders_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/orders_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/pusher_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/pusher_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/settings_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/settings_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/tickets_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/tickets_controller.rb
--------------------------------------------------------------------------------
/app/controllers/private/trade_states_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/private/trade_states_controller.rb
--------------------------------------------------------------------------------
/app/controllers/reset_passwords_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/reset_passwords_controller.rb
--------------------------------------------------------------------------------
/app/controllers/sessions_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/sessions_controller.rb
--------------------------------------------------------------------------------
/app/controllers/two_factors_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/two_factors_controller.rb
--------------------------------------------------------------------------------
/app/controllers/verify/google_auths_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/verify/google_auths_controller.rb
--------------------------------------------------------------------------------
/app/controllers/verify/sms_auths_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/verify/sms_auths_controller.rb
--------------------------------------------------------------------------------
/app/controllers/webhooks_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/webhooks_controller.rb
--------------------------------------------------------------------------------
/app/controllers/welcome_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/controllers/welcome_controller.rb
--------------------------------------------------------------------------------
/app/grids/account_versions_grid.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/grids/account_versions_grid.rb
--------------------------------------------------------------------------------
/app/grids/documents_grid.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/grids/documents_grid.rb
--------------------------------------------------------------------------------
/app/grids/proofs_grid.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/grids/proofs_grid.rb
--------------------------------------------------------------------------------
/app/grids/statistic/deposits_grid.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/grids/statistic/deposits_grid.rb
--------------------------------------------------------------------------------
/app/grids/statistic/orders_grid.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/grids/statistic/orders_grid.rb
--------------------------------------------------------------------------------
/app/grids/statistic/trades_grid.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/grids/statistic/trades_grid.rb
--------------------------------------------------------------------------------
/app/grids/statistic/withdraws_grid.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/grids/statistic/withdraws_grid.rb
--------------------------------------------------------------------------------
/app/helpers/application_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/helpers/application_helper.rb
--------------------------------------------------------------------------------
/app/helpers/mailer_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/helpers/mailer_helper.rb
--------------------------------------------------------------------------------
/app/helpers/private/assets_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/helpers/private/assets_helper.rb
--------------------------------------------------------------------------------
/app/helpers/private/history_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/helpers/private/history_helper.rb
--------------------------------------------------------------------------------
/app/helpers/private/tickets_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/helpers/private/tickets_helper.rb
--------------------------------------------------------------------------------
/app/helpers/tag_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/helpers/tag_helper.rb
--------------------------------------------------------------------------------
/app/helpers/two_factor_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/helpers/two_factor_helper.rb
--------------------------------------------------------------------------------
/app/inputs/display_input.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/inputs/display_input.rb
--------------------------------------------------------------------------------
/app/mailers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/mailers/base_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/mailers/base_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/comment_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/mailers/comment_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/deposit_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/mailers/deposit_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/member_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/mailers/member_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/system_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/mailers/system_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/ticket_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/mailers/ticket_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/token_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/mailers/token_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/withdraw_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/mailers/withdraw_mailer.rb
--------------------------------------------------------------------------------
/app/models/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/models/account.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/account.rb
--------------------------------------------------------------------------------
/app/models/account_version.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/account_version.rb
--------------------------------------------------------------------------------
/app/models/active_yaml_base.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/active_yaml_base.rb
--------------------------------------------------------------------------------
/app/models/admin/ability.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/admin/ability.rb
--------------------------------------------------------------------------------
/app/models/amqp_config.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/amqp_config.rb
--------------------------------------------------------------------------------
/app/models/amqp_queue.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/amqp_queue.rb
--------------------------------------------------------------------------------
/app/models/api_token.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/api_token.rb
--------------------------------------------------------------------------------
/app/models/asset.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/asset.rb
--------------------------------------------------------------------------------
/app/models/audit/audit_log.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/audit/audit_log.rb
--------------------------------------------------------------------------------
/app/models/audit/transfer_audit_log.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/audit/transfer_audit_log.rb
--------------------------------------------------------------------------------
/app/models/authentication.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/authentication.rb
--------------------------------------------------------------------------------
/app/models/bank.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/bank.rb
--------------------------------------------------------------------------------
/app/models/comment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/comment.rb
--------------------------------------------------------------------------------
/app/models/concerns/aasm_absolutely.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/aasm_absolutely.rb
--------------------------------------------------------------------------------
/app/models/concerns/channelable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/channelable.rb
--------------------------------------------------------------------------------
/app/models/concerns/currencible.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/currencible.rb
--------------------------------------------------------------------------------
/app/models/concerns/deposits/bankable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/deposits/bankable.rb
--------------------------------------------------------------------------------
/app/models/concerns/deposits/coinable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/deposits/coinable.rb
--------------------------------------------------------------------------------
/app/models/concerns/fund_sourceable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/fund_sourceable.rb
--------------------------------------------------------------------------------
/app/models/concerns/hash_currencible.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/hash_currencible.rb
--------------------------------------------------------------------------------
/app/models/concerns/international.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/international.rb
--------------------------------------------------------------------------------
/app/models/concerns/withdraws/bankable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/withdraws/bankable.rb
--------------------------------------------------------------------------------
/app/models/concerns/withdraws/coinable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/concerns/withdraws/coinable.rb
--------------------------------------------------------------------------------
/app/models/currency.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/currency.rb
--------------------------------------------------------------------------------
/app/models/deposit.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/deposit.rb
--------------------------------------------------------------------------------
/app/models/deposit_channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/deposit_channel.rb
--------------------------------------------------------------------------------
/app/models/deposits/bank.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/deposits/bank.rb
--------------------------------------------------------------------------------
/app/models/deposits/ether.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/deposits/ether.rb
--------------------------------------------------------------------------------
/app/models/deposits/satoshi.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/deposits/satoshi.rb
--------------------------------------------------------------------------------
/app/models/document.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/document.rb
--------------------------------------------------------------------------------
/app/models/fund_source.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/fund_source.rb
--------------------------------------------------------------------------------
/app/models/global.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/global.rb
--------------------------------------------------------------------------------
/app/models/id_document.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/id_document.rb
--------------------------------------------------------------------------------
/app/models/identity.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/identity.rb
--------------------------------------------------------------------------------
/app/models/market.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/market.rb
--------------------------------------------------------------------------------
/app/models/matching/constants.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/matching/constants.rb
--------------------------------------------------------------------------------
/app/models/matching/engine.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/matching/engine.rb
--------------------------------------------------------------------------------
/app/models/matching/executor.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/matching/executor.rb
--------------------------------------------------------------------------------
/app/models/matching/limit_order.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/matching/limit_order.rb
--------------------------------------------------------------------------------
/app/models/matching/market_order.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/matching/market_order.rb
--------------------------------------------------------------------------------
/app/models/matching/order_book.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/matching/order_book.rb
--------------------------------------------------------------------------------
/app/models/matching/order_book_manager.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/matching/order_book_manager.rb
--------------------------------------------------------------------------------
/app/models/matching/price_level.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/matching/price_level.rb
--------------------------------------------------------------------------------
/app/models/member.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/member.rb
--------------------------------------------------------------------------------
/app/models/member_tag.rb:
--------------------------------------------------------------------------------
1 | class MemberTag < ActiveYamlBase
2 | end
3 |
--------------------------------------------------------------------------------
/app/models/order.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/order.rb
--------------------------------------------------------------------------------
/app/models/order_ask.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/order_ask.rb
--------------------------------------------------------------------------------
/app/models/order_bid.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/order_bid.rb
--------------------------------------------------------------------------------
/app/models/partial_tree.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/partial_tree.rb
--------------------------------------------------------------------------------
/app/models/payment_address.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/payment_address.rb
--------------------------------------------------------------------------------
/app/models/payment_transaction.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/payment_transaction.rb
--------------------------------------------------------------------------------
/app/models/payment_transaction/normal.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/payment_transaction/normal.rb
--------------------------------------------------------------------------------
/app/models/proof.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/proof.rb
--------------------------------------------------------------------------------
/app/models/running_account.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/running_account.rb
--------------------------------------------------------------------------------
/app/models/signup_history.rb:
--------------------------------------------------------------------------------
1 | class SignupHistory < ActiveRecord::Base
2 |
3 | end
4 |
--------------------------------------------------------------------------------
/app/models/ticket.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/ticket.rb
--------------------------------------------------------------------------------
/app/models/token.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/token.rb
--------------------------------------------------------------------------------
/app/models/token/activation.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/token/activation.rb
--------------------------------------------------------------------------------
/app/models/token/reset_password.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/token/reset_password.rb
--------------------------------------------------------------------------------
/app/models/trade.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/trade.rb
--------------------------------------------------------------------------------
/app/models/two_factor.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/two_factor.rb
--------------------------------------------------------------------------------
/app/models/two_factor/app.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/two_factor/app.rb
--------------------------------------------------------------------------------
/app/models/two_factor/email.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/two_factor/email.rb
--------------------------------------------------------------------------------
/app/models/two_factor/sms.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/two_factor/sms.rb
--------------------------------------------------------------------------------
/app/models/two_factor/wechat.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/two_factor/wechat.rb
--------------------------------------------------------------------------------
/app/models/withdraw.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/withdraw.rb
--------------------------------------------------------------------------------
/app/models/withdraw_channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/withdraw_channel.rb
--------------------------------------------------------------------------------
/app/models/withdraws/bank.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/withdraws/bank.rb
--------------------------------------------------------------------------------
/app/models/withdraws/ether.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/withdraws/ether.rb
--------------------------------------------------------------------------------
/app/models/withdraws/satoshi.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/withdraws/satoshi.rb
--------------------------------------------------------------------------------
/app/models/worker/deposit_coin.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/deposit_coin.rb
--------------------------------------------------------------------------------
/app/models/worker/deposit_coin_address.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/deposit_coin_address.rb
--------------------------------------------------------------------------------
/app/models/worker/email_notification.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/email_notification.rb
--------------------------------------------------------------------------------
/app/models/worker/fund_stats.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/fund_stats.rb
--------------------------------------------------------------------------------
/app/models/worker/market_ticker.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/market_ticker.rb
--------------------------------------------------------------------------------
/app/models/worker/matching.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/matching.rb
--------------------------------------------------------------------------------
/app/models/worker/member_stats.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/member_stats.rb
--------------------------------------------------------------------------------
/app/models/worker/order_processor.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/order_processor.rb
--------------------------------------------------------------------------------
/app/models/worker/pusher_market.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/pusher_market.rb
--------------------------------------------------------------------------------
/app/models/worker/pusher_member.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/pusher_member.rb
--------------------------------------------------------------------------------
/app/models/worker/slave_book.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/slave_book.rb
--------------------------------------------------------------------------------
/app/models/worker/sms_notification.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/sms_notification.rb
--------------------------------------------------------------------------------
/app/models/worker/stats.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/stats.rb
--------------------------------------------------------------------------------
/app/models/worker/top_stats.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/top_stats.rb
--------------------------------------------------------------------------------
/app/models/worker/trade_executor.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/trade_executor.rb
--------------------------------------------------------------------------------
/app/models/worker/trade_stats.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/trade_stats.rb
--------------------------------------------------------------------------------
/app/models/worker/wallet_stats.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/wallet_stats.rb
--------------------------------------------------------------------------------
/app/models/worker/withdraw_coin.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/models/worker/withdraw_coin.rb
--------------------------------------------------------------------------------
/app/observers/audit_observer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/observers/audit_observer.rb
--------------------------------------------------------------------------------
/app/observers/transfer_observer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/observers/transfer_observer.rb
--------------------------------------------------------------------------------
/app/services/coin_rpc.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/services/coin_rpc.rb
--------------------------------------------------------------------------------
/app/services/ordering.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/services/ordering.rb
--------------------------------------------------------------------------------
/app/uploaders/file_uploader.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/uploaders/file_uploader.rb
--------------------------------------------------------------------------------
/app/validators/currency_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/validators/currency_validator.rb
--------------------------------------------------------------------------------
/app/validators/email_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/validators/email_validator.rb
--------------------------------------------------------------------------------
/app/validators/strength_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/validators/strength_validator.rb
--------------------------------------------------------------------------------
/app/validators/ticket_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/validators/ticket_validator.rb
--------------------------------------------------------------------------------
/app/validators/withdraw_blacklist_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/validators/withdraw_blacklist_validator.rb
--------------------------------------------------------------------------------
/app/views/activations/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/activations/new.html.slim
--------------------------------------------------------------------------------
/app/views/admin/currency_deposits/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/currency_deposits/new.html.slim
--------------------------------------------------------------------------------
/app/views/admin/dashboard/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/dashboard/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/deposits/_deposit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/deposits/_deposit.html.slim
--------------------------------------------------------------------------------
/app/views/admin/deposits/banks/_table.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/deposits/banks/_table.html.slim
--------------------------------------------------------------------------------
/app/views/admin/deposits/banks/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/deposits/banks/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/deposits/banks/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/deposits/banks/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/deposits/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/deposits/edit.html.slim
--------------------------------------------------------------------------------
/app/views/admin/deposits/ethers/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/deposits/ethers/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/deposits/index.html.slim:
--------------------------------------------------------------------------------
1 | .row: .col-xs-12
2 | = datagrid_table(@admin_deposits_grid, @assets)
3 |
--------------------------------------------------------------------------------
/app/views/admin/deposits/satoshis/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/deposits/satoshis/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/documents/_form.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/documents/_form.html.slim
--------------------------------------------------------------------------------
/app/views/admin/documents/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/documents/edit.html.slim
--------------------------------------------------------------------------------
/app/views/admin/documents/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/documents/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/documents/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/documents/new.html.slim
--------------------------------------------------------------------------------
/app/views/admin/id_documents/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/id_documents/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/id_documents/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/id_documents/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/members/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/members/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/members/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/members/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/members/show.json.jbuilder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/members/show.json.jbuilder
--------------------------------------------------------------------------------
/app/views/admin/members/toggle.js.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/members/toggle.js.erb
--------------------------------------------------------------------------------
/app/views/admin/proofs/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/proofs/edit.html.slim
--------------------------------------------------------------------------------
/app/views/admin/proofs/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/proofs/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/statistic/deposits/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/statistic/deposits/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/statistic/members/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/statistic/members/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/statistic/orders/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/statistic/orders/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/statistic/shared/_filter.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/statistic/shared/_filter.html.slim
--------------------------------------------------------------------------------
/app/views/admin/statistic/trades/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/statistic/trades/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/statistic/withdraws/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/statistic/withdraws/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/tickets/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/tickets/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/tickets/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/tickets/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/withdraws/banks/_table.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/withdraws/banks/_table.html.slim
--------------------------------------------------------------------------------
/app/views/admin/withdraws/banks/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/withdraws/banks/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/withdraws/banks/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/withdraws/banks/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/withdraws/ethers/_table.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/withdraws/ethers/_table.html.slim
--------------------------------------------------------------------------------
/app/views/admin/withdraws/ethers/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/withdraws/ethers/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/withdraws/ethers/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/withdraws/ethers/show.html.slim
--------------------------------------------------------------------------------
/app/views/admin/withdraws/satoshis/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/withdraws/satoshis/index.html.slim
--------------------------------------------------------------------------------
/app/views/admin/withdraws/satoshis/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/admin/withdraws/satoshis/show.html.slim
--------------------------------------------------------------------------------
/app/views/api/v1/deeps/show.jbuilder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/api/v1/deeps/show.jbuilder
--------------------------------------------------------------------------------
/app/views/api/v1/prices/show.jbuilder:
--------------------------------------------------------------------------------
1 | json.array! @price
2 |
--------------------------------------------------------------------------------
/app/views/api/v1/tickers/show.jbuilder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/api/v1/tickers/show.jbuilder
--------------------------------------------------------------------------------
/app/views/api/v1/trades/show.jbuilder:
--------------------------------------------------------------------------------
1 | json.array! @trades
2 |
--------------------------------------------------------------------------------
/app/views/authentications/emails/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/authentications/emails/new.html.slim
--------------------------------------------------------------------------------
/app/views/authentications/identities/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/authentications/identities/new.html.slim
--------------------------------------------------------------------------------
/app/views/datagrid/_form.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/datagrid/_form.html.erb
--------------------------------------------------------------------------------
/app/views/datagrid/_head.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/datagrid/_head.html.erb
--------------------------------------------------------------------------------
/app/views/datagrid/_order_for.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/datagrid/_order_for.html.erb
--------------------------------------------------------------------------------
/app/views/datagrid/_row.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/datagrid/_row.html.erb
--------------------------------------------------------------------------------
/app/views/datagrid/_table.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/datagrid/_table.html.erb
--------------------------------------------------------------------------------
/app/views/deposit_mailer/accepted.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/deposit_mailer/accepted.html.erb
--------------------------------------------------------------------------------
/app/views/documents/api_v2.en.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/documents/api_v2.en.html.slim
--------------------------------------------------------------------------------
/app/views/documents/api_v2.zh-CN.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/documents/api_v2.zh-CN.html.slim
--------------------------------------------------------------------------------
/app/views/documents/oauth.en.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/documents/oauth.en.html.slim
--------------------------------------------------------------------------------
/app/views/documents/oauth.zh-CN.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/documents/oauth.zh-CN.html.slim
--------------------------------------------------------------------------------
/app/views/documents/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/documents/show.html.slim
--------------------------------------------------------------------------------
/app/views/documents/websocket_api.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/documents/websocket_api.html.slim
--------------------------------------------------------------------------------
/app/views/doorkeeper/authorizations/new.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/doorkeeper/authorizations/new.html.erb
--------------------------------------------------------------------------------
/app/views/errors/connection.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/errors/connection.html.slim
--------------------------------------------------------------------------------
/app/views/identities/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/identities/edit.html.slim
--------------------------------------------------------------------------------
/app/views/identities/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/identities/new.html.slim
--------------------------------------------------------------------------------
/app/views/kaminari/_first_page.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/kaminari/_first_page.html.slim
--------------------------------------------------------------------------------
/app/views/kaminari/_gap.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/kaminari/_gap.html.slim
--------------------------------------------------------------------------------
/app/views/kaminari/_last_page.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/kaminari/_last_page.html.slim
--------------------------------------------------------------------------------
/app/views/kaminari/_next_page.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/kaminari/_next_page.html.slim
--------------------------------------------------------------------------------
/app/views/kaminari/_page.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/kaminari/_page.html.slim
--------------------------------------------------------------------------------
/app/views/kaminari/_paginator.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/kaminari/_paginator.html.slim
--------------------------------------------------------------------------------
/app/views/kaminari/_prev_page.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/kaminari/_prev_page.html.slim
--------------------------------------------------------------------------------
/app/views/layouts/admin.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/layouts/admin.html.slim
--------------------------------------------------------------------------------
/app/views/layouts/api_v2.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/layouts/api_v2.html.slim
--------------------------------------------------------------------------------
/app/views/layouts/application.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/layouts/application.html.slim
--------------------------------------------------------------------------------
/app/views/layouts/funds.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/layouts/funds.html.erb
--------------------------------------------------------------------------------
/app/views/layouts/landing.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/layouts/landing.html.slim
--------------------------------------------------------------------------------
/app/views/layouts/mailers/application.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/layouts/mailers/application.html.erb
--------------------------------------------------------------------------------
/app/views/layouts/mailers/system.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/layouts/mailers/system.html.erb
--------------------------------------------------------------------------------
/app/views/member_mailer/notify_signin.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/member_mailer/notify_signin.html.erb
--------------------------------------------------------------------------------
/app/views/members/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/members/edit.html.slim
--------------------------------------------------------------------------------
/app/views/private/account_versions/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/account_versions/index.html.slim
--------------------------------------------------------------------------------
/app/views/private/api_tokens/create.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/api_tokens/create.html.slim
--------------------------------------------------------------------------------
/app/views/private/api_tokens/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/api_tokens/edit.html.slim
--------------------------------------------------------------------------------
/app/views/private/api_tokens/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/api_tokens/index.html.slim
--------------------------------------------------------------------------------
/app/views/private/api_tokens/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/api_tokens/new.html.slim
--------------------------------------------------------------------------------
/app/views/private/assets/_btc_assets.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/assets/_btc_assets.html.slim
--------------------------------------------------------------------------------
/app/views/private/assets/_cny_assets.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/assets/_cny_assets.html.slim
--------------------------------------------------------------------------------
/app/views/private/assets/_liability_data.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/assets/_liability_data.html.slim
--------------------------------------------------------------------------------
/app/views/private/assets/_liability_tabs.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/assets/_liability_tabs.html.slim
--------------------------------------------------------------------------------
/app/views/private/assets/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/assets/index.html.slim
--------------------------------------------------------------------------------
/app/views/private/assets/partial_tree.js.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/assets/partial_tree.js.erb
--------------------------------------------------------------------------------
/app/views/private/funds/index.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/funds/index.html.erb
--------------------------------------------------------------------------------
/app/views/private/funds/index.json.jbuilder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/funds/index.json.jbuilder
--------------------------------------------------------------------------------
/app/views/private/history/_order.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/history/_order.html.slim
--------------------------------------------------------------------------------
/app/views/private/history/_tabs.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/history/_tabs.html.slim
--------------------------------------------------------------------------------
/app/views/private/history/_trade.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/history/_trade.html.slim
--------------------------------------------------------------------------------
/app/views/private/history/_transaction.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/history/_transaction.html.slim
--------------------------------------------------------------------------------
/app/views/private/history/account.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/history/account.html.slim
--------------------------------------------------------------------------------
/app/views/private/history/orders.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/history/orders.html.slim
--------------------------------------------------------------------------------
/app/views/private/history/trades.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/history/trades.html.slim
--------------------------------------------------------------------------------
/app/views/private/id_documents/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/id_documents/edit.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_ask_entry.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_ask_entry.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_balance.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_balance.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_bid_entry.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_bid_entry.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_candlestick.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_candlestick.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_chat.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_chat.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_depths.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_depths.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_header.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_header.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_language.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_language.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_market_list.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_market_list.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_market_trades.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_market_trades.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_mask.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_mask.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_my_orders.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_my_orders.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_order_book.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_order_book.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_range_switch.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_range_switch.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_settings.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_settings.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/_status.html.slim:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/private/markets/_ticker.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/_ticker.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/show.html.slim
--------------------------------------------------------------------------------
/app/views/private/markets/show.json.jbuilder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/markets/show.json.jbuilder
--------------------------------------------------------------------------------
/app/views/private/settings/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/settings/index.html.slim
--------------------------------------------------------------------------------
/app/views/private/shared/_balances.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/shared/_balances.html.slim
--------------------------------------------------------------------------------
/app/views/private/tickets/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/tickets/index.html.slim
--------------------------------------------------------------------------------
/app/views/private/tickets/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/tickets/new.html.slim
--------------------------------------------------------------------------------
/app/views/private/tickets/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/tickets/show.html.slim
--------------------------------------------------------------------------------
/app/views/private/withdraws/ethers/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/withdraws/ethers/edit.html.slim
--------------------------------------------------------------------------------
/app/views/private/withdraws/ethers/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/withdraws/ethers/new.html.slim
--------------------------------------------------------------------------------
/app/views/private/withdraws/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/withdraws/index.html.slim
--------------------------------------------------------------------------------
/app/views/private/withdraws/satoshis/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/private/withdraws/satoshis/new.html.slim
--------------------------------------------------------------------------------
/app/views/reset_passwords/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/reset_passwords/edit.html.slim
--------------------------------------------------------------------------------
/app/views/reset_passwords/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/reset_passwords/new.html.slim
--------------------------------------------------------------------------------
/app/views/sessions/new.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/sessions/new.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_alert.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_alert.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_document.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_document.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_flash.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_flash.slim
--------------------------------------------------------------------------------
/app/views/shared/_footer.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_footer.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_frame.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_frame.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_header.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_header.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_header_account_balance.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_header_account_balance.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_header_lang_sel.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_header_lang_sel.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_header_profile_setting.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_header_profile_setting.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_html5.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_html5.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_meta.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_meta.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_two_factor_app.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_two_factor_app.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_two_factor_app_and_sms.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_two_factor_app_and_sms.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_two_factor_auth.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_two_factor_auth.html.slim
--------------------------------------------------------------------------------
/app/views/shared/_two_factor_sms.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/_two_factor_sms.html.slim
--------------------------------------------------------------------------------
/app/views/shared/admin/_account.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/admin/_account.html.slim
--------------------------------------------------------------------------------
/app/views/shared/admin/_member.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/admin/_member.html.slim
--------------------------------------------------------------------------------
/app/views/shared/admin/_member_accounts.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/admin/_member_accounts.html.slim
--------------------------------------------------------------------------------
/app/views/shared/market/_chart.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/market/_chart.html.slim
--------------------------------------------------------------------------------
/app/views/shared/market/_market_sel.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/market/_market_sel.html.slim
--------------------------------------------------------------------------------
/app/views/shared/market/_ticker.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/shared/market/_ticker.html.slim
--------------------------------------------------------------------------------
/app/views/simple_captcha/_simple_captcha.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/simple_captcha/_simple_captcha.erb
--------------------------------------------------------------------------------
/app/views/system_mailer/balance_warning.text.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/system_mailer/balance_warning.text.erb
--------------------------------------------------------------------------------
/app/views/system_mailer/daily_stats.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/system_mailer/daily_stats.html.erb
--------------------------------------------------------------------------------
/app/views/token_mailer/activation.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/token_mailer/activation.html.erb
--------------------------------------------------------------------------------
/app/views/token_mailer/reset_password.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/token_mailer/reset_password.html.erb
--------------------------------------------------------------------------------
/app/views/two_factors/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/two_factors/index.html.slim
--------------------------------------------------------------------------------
/app/views/verify/google_auths/edit.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/verify/google_auths/edit.html.slim
--------------------------------------------------------------------------------
/app/views/verify/google_auths/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/verify/google_auths/show.html.slim
--------------------------------------------------------------------------------
/app/views/verify/sms_auths/show.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/verify/sms_auths/show.html.slim
--------------------------------------------------------------------------------
/app/views/welcome/index.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/welcome/index.html.slim
--------------------------------------------------------------------------------
/app/views/withdraw_mailer/done.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/withdraw_mailer/done.html.erb
--------------------------------------------------------------------------------
/app/views/withdraw_mailer/processing.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/withdraw_mailer/processing.html.erb
--------------------------------------------------------------------------------
/app/views/withdraw_mailer/submitted.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/withdraw_mailer/submitted.html.erb
--------------------------------------------------------------------------------
/app/views/withdraw_mailer/withdraw_state.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/app/views/withdraw_mailer/withdraw_state.html.erb
--------------------------------------------------------------------------------
/bin/bundle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/bin/bundle
--------------------------------------------------------------------------------
/bin/concurrent_create_order_benchmark.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/bin/concurrent_create_order_benchmark.rb
--------------------------------------------------------------------------------
/bin/init_config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/bin/init_config
--------------------------------------------------------------------------------
/bin/rails:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/bin/rails
--------------------------------------------------------------------------------
/bin/rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/bin/rake
--------------------------------------------------------------------------------
/bin/rspec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/bin/rspec
--------------------------------------------------------------------------------
/bin/transifex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/bin/transifex
--------------------------------------------------------------------------------
/config.ru:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config.ru
--------------------------------------------------------------------------------
/config/amqp.yml.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/amqp.yml.example
--------------------------------------------------------------------------------
/config/application.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/application.rb
--------------------------------------------------------------------------------
/config/application.yml.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/application.yml.example
--------------------------------------------------------------------------------
/config/banks.yml.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/banks.yml.example
--------------------------------------------------------------------------------
/config/boot.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/boot.rb
--------------------------------------------------------------------------------
/config/currencies.yml.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/currencies.yml.example
--------------------------------------------------------------------------------
/config/daemons.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/daemons.yml
--------------------------------------------------------------------------------
/config/database.yml.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/database.yml.example
--------------------------------------------------------------------------------
/config/deploy.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/deploy.rb
--------------------------------------------------------------------------------
/config/deposit_channels.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/deposit_channels.yml
--------------------------------------------------------------------------------
/config/environment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/environment.rb
--------------------------------------------------------------------------------
/config/environments/development.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/environments/development.rb
--------------------------------------------------------------------------------
/config/environments/production.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/environments/production.rb
--------------------------------------------------------------------------------
/config/environments/test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/environments/test.rb
--------------------------------------------------------------------------------
/config/initializers/action_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/action_controller.rb
--------------------------------------------------------------------------------
/config/initializers/activerecord.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/activerecord.rb
--------------------------------------------------------------------------------
/config/initializers/backtrace_silencers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/backtrace_silencers.rb
--------------------------------------------------------------------------------
/config/initializers/carrierwave.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/carrierwave.rb
--------------------------------------------------------------------------------
/config/initializers/check_env.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/check_env.rb
--------------------------------------------------------------------------------
/config/initializers/date_time_format.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/date_time_format.rb
--------------------------------------------------------------------------------
/config/initializers/dirty_ext.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/dirty_ext.rb
--------------------------------------------------------------------------------
/config/initializers/doorkeeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/doorkeeper.rb
--------------------------------------------------------------------------------
/config/initializers/easy_table.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/easy_table.rb
--------------------------------------------------------------------------------
/config/initializers/filter_parameter_logging.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/filter_parameter_logging.rb
--------------------------------------------------------------------------------
/config/initializers/inflections.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/inflections.rb
--------------------------------------------------------------------------------
/config/initializers/kaminari_config.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/kaminari_config.rb
--------------------------------------------------------------------------------
/config/initializers/mime_types.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/mime_types.rb
--------------------------------------------------------------------------------
/config/initializers/mysql2_adapter.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/mysql2_adapter.rb
--------------------------------------------------------------------------------
/config/initializers/omniauth.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/omniauth.rb
--------------------------------------------------------------------------------
/config/initializers/pusher.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/pusher.rb
--------------------------------------------------------------------------------
/config/initializers/secret_token.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/secret_token.rb
--------------------------------------------------------------------------------
/config/initializers/simple_form.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/simple_form.rb
--------------------------------------------------------------------------------
/config/initializers/simple_form_bootstrap.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/simple_form_bootstrap.rb
--------------------------------------------------------------------------------
/config/initializers/string_extend.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/string_extend.rb
--------------------------------------------------------------------------------
/config/initializers/withdraw_blacklist.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/config/initializers/wrap_parameters.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/initializers/wrap_parameters.rb
--------------------------------------------------------------------------------
/config/locales/client.cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.cs.yml
--------------------------------------------------------------------------------
/config/locales/client.de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.de.yml
--------------------------------------------------------------------------------
/config/locales/client.el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.el.yml
--------------------------------------------------------------------------------
/config/locales/client.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.en.yml
--------------------------------------------------------------------------------
/config/locales/client.it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.it.yml
--------------------------------------------------------------------------------
/config/locales/client.ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.ko.yml
--------------------------------------------------------------------------------
/config/locales/client.ru_RU.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.ru_RU.yml
--------------------------------------------------------------------------------
/config/locales/client.zh-CN.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.zh-CN.yml
--------------------------------------------------------------------------------
/config/locales/client.zh-TW.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/client.zh-TW.yml
--------------------------------------------------------------------------------
/config/locales/custom/client.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/custom/client.en.yml
--------------------------------------------------------------------------------
/config/locales/custom/client.zh-CN.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/custom/client.zh-CN.yml
--------------------------------------------------------------------------------
/config/locales/custom/server.en.yml:
--------------------------------------------------------------------------------
1 | # Put your customized locale translations here.
2 |
3 | en:
4 |
--------------------------------------------------------------------------------
/config/locales/custom/server.zh-CN.yml:
--------------------------------------------------------------------------------
1 | # Put your customized locale translations here.
2 |
3 | zh-CN:
4 |
--------------------------------------------------------------------------------
/config/locales/server.cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.cs.yml
--------------------------------------------------------------------------------
/config/locales/server.de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.de.yml
--------------------------------------------------------------------------------
/config/locales/server.el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.el.yml
--------------------------------------------------------------------------------
/config/locales/server.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.en.yml
--------------------------------------------------------------------------------
/config/locales/server.it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.it.yml
--------------------------------------------------------------------------------
/config/locales/server.ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.ko.yml
--------------------------------------------------------------------------------
/config/locales/server.ru_RU.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.ru_RU.yml
--------------------------------------------------------------------------------
/config/locales/server.zh-CN.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.zh-CN.yml
--------------------------------------------------------------------------------
/config/locales/server.zh-TW.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/locales/server.zh-TW.yml
--------------------------------------------------------------------------------
/config/logrotate.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/logrotate.conf
--------------------------------------------------------------------------------
/config/maintenance.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/maintenance.sh
--------------------------------------------------------------------------------
/config/markets.yml.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/markets.yml.example
--------------------------------------------------------------------------------
/config/member_tags.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/member_tags.yml
--------------------------------------------------------------------------------
/config/nginx.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/nginx.conf
--------------------------------------------------------------------------------
/config/nginx_maintenance.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/nginx_maintenance.conf
--------------------------------------------------------------------------------
/config/routes.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/routes.rb
--------------------------------------------------------------------------------
/config/routes/admin.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/routes/admin.rb
--------------------------------------------------------------------------------
/config/schedule.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/schedule.rb
--------------------------------------------------------------------------------
/config/slack.yml.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/slack.yml.example
--------------------------------------------------------------------------------
/config/withdraw_channels.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/config/withdraw_channels.yml
--------------------------------------------------------------------------------
/db/migrate/20130624011823_create_members.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130624011823_create_members.rb
--------------------------------------------------------------------------------
/db/migrate/20130629015414_create_identities.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130629015414_create_identities.rb
--------------------------------------------------------------------------------
/db/migrate/20130901010953_create_orders.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130901010953_create_orders.rb
--------------------------------------------------------------------------------
/db/migrate/20130901154530_create_trades.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130901154530_create_trades.rb
--------------------------------------------------------------------------------
/db/migrate/20130907110146_create_withdraws.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130907110146_create_withdraws.rb
--------------------------------------------------------------------------------
/db/migrate/20130907124647_create_deposits.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130907124647_create_deposits.rb
--------------------------------------------------------------------------------
/db/migrate/20130919091853_add_sn_to_orders.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130919091853_add_sn_to_orders.rb
--------------------------------------------------------------------------------
/db/migrate/20130928080757_create_account_logs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130928080757_create_account_logs.rb
--------------------------------------------------------------------------------
/db/migrate/20130928165236_add_alipay_to_members.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130928165236_add_alipay_to_members.rb
--------------------------------------------------------------------------------
/db/migrate/20130929012418_create_invitations.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130929012418_create_invitations.rb
--------------------------------------------------------------------------------
/db/migrate/20130930172651_rebuild_withdraws.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20130930172651_rebuild_withdraws.rb
--------------------------------------------------------------------------------
/db/migrate/20131002012809_add_fee_to_withdraws.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20131002012809_add_fee_to_withdraws.rb
--------------------------------------------------------------------------------
/db/migrate/20131002190141_rebuild_deposits.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20131002190141_rebuild_deposits.rb
--------------------------------------------------------------------------------
/db/migrate/20131006183340_create_tokens.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20131006183340_create_tokens.rb
--------------------------------------------------------------------------------
/db/migrate/20131009132505_create_documents.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20131009132505_create_documents.rb
--------------------------------------------------------------------------------
/db/migrate/20131201011127_drop_reset_pins.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20131201011127_drop_reset_pins.rb
--------------------------------------------------------------------------------
/db/migrate/20131224162832_add_sn_to_withdraws.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20131224162832_add_sn_to_withdraws.rb
--------------------------------------------------------------------------------
/db/migrate/20140105034746_drop_reset_passwords.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140105034746_drop_reset_passwords.rb
--------------------------------------------------------------------------------
/db/migrate/20140306020939_create_id_documents.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140306020939_create_id_documents.rb
--------------------------------------------------------------------------------
/db/migrate/20140312071704_add_sum_to_withdraws.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140312071704_add_sum_to_withdraws.rb
--------------------------------------------------------------------------------
/db/migrate/20140319022302_create_proofs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140319022302_create_proofs.rb
--------------------------------------------------------------------------------
/db/migrate/20140320142701_create_versions.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140320142701_create_versions.rb
--------------------------------------------------------------------------------
/db/migrate/20140326170234_change_deposits.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140326170234_change_deposits.rb
--------------------------------------------------------------------------------
/db/migrate/20140327044440_change_withdraws.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140327044440_change_withdraws.rb
--------------------------------------------------------------------------------
/db/migrate/20140328101707_add_type_to_deposits.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140328101707_add_type_to_deposits.rb
--------------------------------------------------------------------------------
/db/migrate/20140329070543_remove_channel_id.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140329070543_remove_channel_id.rb
--------------------------------------------------------------------------------
/db/migrate/20140402043033_create_partial_trees.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140402043033_create_partial_trees.rb
--------------------------------------------------------------------------------
/db/migrate/20140403031847_create_api_tokens.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140403031847_create_api_tokens.rb
--------------------------------------------------------------------------------
/db/migrate/20140418082715_add_sum_to_proofs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140418082715_add_sum_to_proofs.rb
--------------------------------------------------------------------------------
/db/migrate/20140707115022_create_audit_logs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140707115022_create_audit_logs.rb
--------------------------------------------------------------------------------
/db/migrate/20140709084906_create_tickets.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140709084906_create_tickets.rb
--------------------------------------------------------------------------------
/db/migrate/20140709085158_create_comments.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140709085158_create_comments.rb
--------------------------------------------------------------------------------
/db/migrate/20140714143823_unread_migration.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140714143823_unread_migration.rb
--------------------------------------------------------------------------------
/db/migrate/20140717033231_add_assets_table.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140717033231_add_assets_table.rb
--------------------------------------------------------------------------------
/db/migrate/20140806141035_add_index_to_orders.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140806141035_add_index_to_orders.rb
--------------------------------------------------------------------------------
/db/migrate/20140806141419_add_index_to_trades.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/migrate/20140806141419_add_index_to_trades.rb
--------------------------------------------------------------------------------
/db/schema.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/schema.rb
--------------------------------------------------------------------------------
/db/seeds.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/db/seeds.rb
--------------------------------------------------------------------------------
/doc/AWS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/AWS.md
--------------------------------------------------------------------------------
/doc/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/README.md
--------------------------------------------------------------------------------
/doc/bitgo.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/bitgo.md
--------------------------------------------------------------------------------
/doc/currency.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/currency.md
--------------------------------------------------------------------------------
/doc/deploy-production-server.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/deploy-production-server.md
--------------------------------------------------------------------------------
/doc/docker/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/docker/Dockerfile
--------------------------------------------------------------------------------
/doc/docker/bin/base.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/docker/bin/base.sh
--------------------------------------------------------------------------------
/doc/docker/bin/webapp.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/docker/bin/webapp.sh
--------------------------------------------------------------------------------
/doc/docker/conf/nginx-peatio-env.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/docker/conf/nginx-peatio-env.conf
--------------------------------------------------------------------------------
/doc/docker/conf/nginx-peatio-with-ssl.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/docker/conf/nginx-peatio-with-ssl.conf
--------------------------------------------------------------------------------
/doc/docker/conf/rails-amqp.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/docker/conf/rails-amqp.yml
--------------------------------------------------------------------------------
/doc/docker/conf/rails-application.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/docker/conf/rails-application.yml
--------------------------------------------------------------------------------
/doc/docker/conf/rails-database.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/docker/conf/rails-database.yml
--------------------------------------------------------------------------------
/doc/eth.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/eth.md
--------------------------------------------------------------------------------
/doc/setup-local-osx.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/setup-local-osx.md
--------------------------------------------------------------------------------
/doc/setup-local-ubuntu.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/doc/setup-local-ubuntu.md
--------------------------------------------------------------------------------
/eth/default:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/eth/default
--------------------------------------------------------------------------------
/eth/filter.service:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/eth/filter.service
--------------------------------------------------------------------------------
/eth/geth.service:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/eth/geth.service
--------------------------------------------------------------------------------
/eth/restart.cgi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/eth/restart.cgi
--------------------------------------------------------------------------------
/eth/service.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/eth/service.rb
--------------------------------------------------------------------------------
/eth/total.cgi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/eth/total.cgi
--------------------------------------------------------------------------------
/eth/total.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/eth/total.js
--------------------------------------------------------------------------------
/lib/aasm/locking.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/aasm/locking.rb
--------------------------------------------------------------------------------
/lib/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/lib/benchmark/amqp_mock.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/benchmark/amqp_mock.rb
--------------------------------------------------------------------------------
/lib/benchmark/execution.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/benchmark/execution.rb
--------------------------------------------------------------------------------
/lib/benchmark/helpers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/benchmark/helpers.rb
--------------------------------------------------------------------------------
/lib/benchmark/integration.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/benchmark/integration.rb
--------------------------------------------------------------------------------
/lib/benchmark/matching.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/benchmark/matching.rb
--------------------------------------------------------------------------------
/lib/benchmark/sweat_factory.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/benchmark/sweat_factory.rb
--------------------------------------------------------------------------------
/lib/daemons/amqp_daemon.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/amqp_daemon.rb
--------------------------------------------------------------------------------
/lib/daemons/daemons:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/daemons
--------------------------------------------------------------------------------
/lib/daemons/deposit_coin_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/deposit_coin_ctl
--------------------------------------------------------------------------------
/lib/daemons/global_state.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/global_state.rb
--------------------------------------------------------------------------------
/lib/daemons/global_state_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/global_state_ctl
--------------------------------------------------------------------------------
/lib/daemons/hot_wallets.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/hot_wallets.rb
--------------------------------------------------------------------------------
/lib/daemons/hot_wallets_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/hot_wallets_ctl
--------------------------------------------------------------------------------
/lib/daemons/k.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/k.rb
--------------------------------------------------------------------------------
/lib/daemons/k_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/k_ctl
--------------------------------------------------------------------------------
/lib/daemons/market_data_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/market_data_ctl
--------------------------------------------------------------------------------
/lib/daemons/matching_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/matching_ctl
--------------------------------------------------------------------------------
/lib/daemons/notification_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/notification_ctl
--------------------------------------------------------------------------------
/lib/daemons/order_processor_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/order_processor_ctl
--------------------------------------------------------------------------------
/lib/daemons/payment_transaction.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/payment_transaction.rb
--------------------------------------------------------------------------------
/lib/daemons/payment_transaction_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/payment_transaction_ctl
--------------------------------------------------------------------------------
/lib/daemons/pusher_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/pusher_ctl
--------------------------------------------------------------------------------
/lib/daemons/stats.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/stats.rb
--------------------------------------------------------------------------------
/lib/daemons/stats_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/stats_ctl
--------------------------------------------------------------------------------
/lib/daemons/trade_executor_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/trade_executor_ctl
--------------------------------------------------------------------------------
/lib/daemons/websocket_api.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/websocket_api.rb
--------------------------------------------------------------------------------
/lib/daemons/websocket_api_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/websocket_api_ctl
--------------------------------------------------------------------------------
/lib/daemons/withdraw_audit.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/withdraw_audit.rb
--------------------------------------------------------------------------------
/lib/daemons/withdraw_audit_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/withdraw_audit_ctl
--------------------------------------------------------------------------------
/lib/daemons/withdraw_coin_ctl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/daemons/withdraw_coin_ctl
--------------------------------------------------------------------------------
/lib/datagrid/column_i18n.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/datagrid/column_i18n.rb
--------------------------------------------------------------------------------
/lib/datagrid/naming.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/datagrid/naming.rb
--------------------------------------------------------------------------------
/lib/doorkeeper/access_token.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/doorkeeper/access_token.rb
--------------------------------------------------------------------------------
/lib/extras/simple_form_extensions.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/extras/simple_form_extensions.rb
--------------------------------------------------------------------------------
/lib/generators/deposit/USAGE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/generators/deposit/USAGE
--------------------------------------------------------------------------------
/lib/generators/deposit/deposit_generator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/generators/deposit/deposit_generator.rb
--------------------------------------------------------------------------------
/lib/generators/deposit/templates/model.rb.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/generators/deposit/templates/model.rb.erb
--------------------------------------------------------------------------------
/lib/generators/withdraw/USAGE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/generators/withdraw/USAGE
--------------------------------------------------------------------------------
/lib/generators/withdraw/templates/model.rb.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/generators/withdraw/templates/model.rb.erb
--------------------------------------------------------------------------------
/lib/generators/withdraw/withdraw_generator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/generators/withdraw/withdraw_generator.rb
--------------------------------------------------------------------------------
/lib/js_locale_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/js_locale_helper.rb
--------------------------------------------------------------------------------
/lib/kline_db.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/kline_db.rb
--------------------------------------------------------------------------------
/lib/market_constraint.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/market_constraint.rb
--------------------------------------------------------------------------------
/lib/middleware/i18n_js.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/middleware/i18n_js.rb
--------------------------------------------------------------------------------
/lib/middleware/security.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/middleware/security.rb
--------------------------------------------------------------------------------
/lib/peatio/version.rb:
--------------------------------------------------------------------------------
1 | module Peatio
2 | VERSION = "0.2.1"
3 | end
4 |
--------------------------------------------------------------------------------
/lib/tasks/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/lib/tasks/benchmark.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/benchmark.rake
--------------------------------------------------------------------------------
/lib/tasks/coin.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/coin.rake
--------------------------------------------------------------------------------
/lib/tasks/deploy.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/deploy.rake
--------------------------------------------------------------------------------
/lib/tasks/emu.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/emu.rake
--------------------------------------------------------------------------------
/lib/tasks/install.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/install.rake
--------------------------------------------------------------------------------
/lib/tasks/migration.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/migration.rake
--------------------------------------------------------------------------------
/lib/tasks/order.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/order.rake
--------------------------------------------------------------------------------
/lib/tasks/replay.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/replay.rake
--------------------------------------------------------------------------------
/lib/tasks/solvency.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/solvency.rake
--------------------------------------------------------------------------------
/lib/tasks/stats.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/tasks/stats.rake
--------------------------------------------------------------------------------
/lib/templates/slim/scaffold/_form.html.slim:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/lib/templates/slim/scaffold/_form.html.slim
--------------------------------------------------------------------------------
/peatio-installer-using-vagrant.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/peatio-installer-using-vagrant.sh
--------------------------------------------------------------------------------
/peatio-run-daemons.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/peatio-run-daemons.sh
--------------------------------------------------------------------------------
/public/404.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/404.html
--------------------------------------------------------------------------------
/public/422.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/422.html
--------------------------------------------------------------------------------
/public/500.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/500.html
--------------------------------------------------------------------------------
/public/502.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/502.html
--------------------------------------------------------------------------------
/public/ZeroClipboard.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/ZeroClipboard.swf
--------------------------------------------------------------------------------
/public/btsx.chongzhi.yunbi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/btsx.chongzhi.yunbi.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/icon-btc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/icon-btc.png
--------------------------------------------------------------------------------
/public/icon-cny.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/icon-cny.png
--------------------------------------------------------------------------------
/public/icon-eth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/icon-eth.png
--------------------------------------------------------------------------------
/public/icon-pts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/icon-pts.png
--------------------------------------------------------------------------------
/public/languages/en.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/languages/en.png
--------------------------------------------------------------------------------
/public/languages/ko.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/languages/ko.png
--------------------------------------------------------------------------------
/public/languages/zh-CN.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/languages/zh-CN.png
--------------------------------------------------------------------------------
/public/peatio-notification-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/peatio-notification-logo.png
--------------------------------------------------------------------------------
/public/peatio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/peatio.png
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/robots.txt
--------------------------------------------------------------------------------
/public/sounds/success.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/sounds/success.mp3
--------------------------------------------------------------------------------
/public/sounds/warning.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/sounds/warning.mp3
--------------------------------------------------------------------------------
/public/templates/fund_sources/bank.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/fund_sources/bank.html
--------------------------------------------------------------------------------
/public/templates/fund_sources/coin.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/fund_sources/coin.html
--------------------------------------------------------------------------------
/public/templates/funds/_address.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/_address.html
--------------------------------------------------------------------------------
/public/templates/funds/_coin_withdraw.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/_coin_withdraw.html
--------------------------------------------------------------------------------
/public/templates/funds/_deposit_coin.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/_deposit_coin.html
--------------------------------------------------------------------------------
/public/templates/funds/_flash.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/_flash.html
--------------------------------------------------------------------------------
/public/templates/funds/_qrcode.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/_qrcode.html
--------------------------------------------------------------------------------
/public/templates/funds/_two_factor_auth.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/_two_factor_auth.html
--------------------------------------------------------------------------------
/public/templates/funds/accounts.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/accounts.html
--------------------------------------------------------------------------------
/public/templates/funds/deposit.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/deposit.html
--------------------------------------------------------------------------------
/public/templates/funds/deposit_btc.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/deposit_btc.html
--------------------------------------------------------------------------------
/public/templates/funds/deposit_cny.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/deposit_cny.html
--------------------------------------------------------------------------------
/public/templates/funds/deposit_eth.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/deposit_eth.html
--------------------------------------------------------------------------------
/public/templates/funds/deposits.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/deposits.html
--------------------------------------------------------------------------------
/public/templates/funds/withdraw.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/withdraw.html
--------------------------------------------------------------------------------
/public/templates/funds/withdraw_btc.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/withdraw_btc.html
--------------------------------------------------------------------------------
/public/templates/funds/withdraw_cny.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/withdraw_cny.html
--------------------------------------------------------------------------------
/public/templates/funds/withdraw_eth.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/withdraw_eth.html
--------------------------------------------------------------------------------
/public/templates/funds/withdraws.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/funds/withdraws.html
--------------------------------------------------------------------------------
/public/templates/shared/confirm_dialog.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/templates/shared/confirm_dialog.html
--------------------------------------------------------------------------------
/public/throbber.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/public/throbber.gif
--------------------------------------------------------------------------------
/rails.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/rails.sh
--------------------------------------------------------------------------------
/script/pre-commit.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/script/pre-commit.sh
--------------------------------------------------------------------------------
/server.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/server.sh
--------------------------------------------------------------------------------
/spec/api/api_v2/auth/authenticator_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/auth/authenticator_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/auth/middleware_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/auth/middleware_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/auth/utils_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/auth/utils_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/deposits_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/deposits_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/entities/account_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/entities/account_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/entities/member_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/entities/member_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/entities/order_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/entities/order_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/entities/trade_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/entities/trade_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/helpers_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/helpers_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/markets_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/markets_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/members_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/members_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/mount_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/mount_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/order_books_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/order_books_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/orders_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/orders_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/tickers_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/tickers_spec.rb
--------------------------------------------------------------------------------
/spec/api/api_v2/trades_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/api/api_v2/trades_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/activations_controller_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/controllers/activations_controller_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/admin/two_factors_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/controllers/admin/two_factors_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/application_controller_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/controllers/application_controller_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/two_factors_controller_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/controllers/two_factors_controller_spec.rb
--------------------------------------------------------------------------------
/spec/factories/account.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/account.rb
--------------------------------------------------------------------------------
/spec/factories/api_tokens.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/api_tokens.rb
--------------------------------------------------------------------------------
/spec/factories/authentications.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/authentications.rb
--------------------------------------------------------------------------------
/spec/factories/comments.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/comments.rb
--------------------------------------------------------------------------------
/spec/factories/deposits.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/deposits.rb
--------------------------------------------------------------------------------
/spec/factories/documents.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/documents.rb
--------------------------------------------------------------------------------
/spec/factories/fund_source.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/fund_source.rb
--------------------------------------------------------------------------------
/spec/factories/id_document.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/id_document.rb
--------------------------------------------------------------------------------
/spec/factories/identity.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/identity.rb
--------------------------------------------------------------------------------
/spec/factories/member.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/member.rb
--------------------------------------------------------------------------------
/spec/factories/orders.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/orders.rb
--------------------------------------------------------------------------------
/spec/factories/partial_trees.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/partial_trees.rb
--------------------------------------------------------------------------------
/spec/factories/payment_addresses.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/payment_addresses.rb
--------------------------------------------------------------------------------
/spec/factories/payment_transactions.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/payment_transactions.rb
--------------------------------------------------------------------------------
/spec/factories/proofs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/proofs.rb
--------------------------------------------------------------------------------
/spec/factories/tickets.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/tickets.rb
--------------------------------------------------------------------------------
/spec/factories/token.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/token.rb
--------------------------------------------------------------------------------
/spec/factories/trade.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/trade.rb
--------------------------------------------------------------------------------
/spec/factories/two_factor.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/two_factor.rb
--------------------------------------------------------------------------------
/spec/factories/withdraw.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/factories/withdraw.rb
--------------------------------------------------------------------------------
/spec/features/admin/withdraw_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/admin/withdraw_spec.rb
--------------------------------------------------------------------------------
/spec/features/market_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/market_spec.rb
--------------------------------------------------------------------------------
/spec/features/market_trade_history_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/market_trade_history_spec.rb
--------------------------------------------------------------------------------
/spec/features/reset_password_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/reset_password_spec.rb
--------------------------------------------------------------------------------
/spec/features/sign_in_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/sign_in_spec.rb
--------------------------------------------------------------------------------
/spec/features/sign_up_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/sign_up_spec.rb
--------------------------------------------------------------------------------
/spec/features/tag_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/tag_spec.rb
--------------------------------------------------------------------------------
/spec/features/two_factor_auth_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/two_factor_auth_spec.rb
--------------------------------------------------------------------------------
/spec/features/withdraw_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/features/withdraw_spec.rb
--------------------------------------------------------------------------------
/spec/fixtures/banks.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/fixtures/banks.yml
--------------------------------------------------------------------------------
/spec/fixtures/currencies.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/fixtures/currencies.yml
--------------------------------------------------------------------------------
/spec/fixtures/deposit_channels.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/fixtures/deposit_channels.yml
--------------------------------------------------------------------------------
/spec/fixtures/markets.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/fixtures/markets.yml
--------------------------------------------------------------------------------
/spec/fixtures/member_tags.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/fixtures/member_tags.yml
--------------------------------------------------------------------------------
/spec/fixtures/withdraw_channels.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/fixtures/withdraw_channels.yml
--------------------------------------------------------------------------------
/spec/helpers/private/assets_helper_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/helpers/private/assets_helper_spec.rb
--------------------------------------------------------------------------------
/spec/helpers/two_factor_helper_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/helpers/two_factor_helper_spec.rb
--------------------------------------------------------------------------------
/spec/lib/doorkeeper/access_token_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/lib/doorkeeper/access_token_spec.rb
--------------------------------------------------------------------------------
/spec/mailers/deposit_mailer_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/mailers/deposit_mailer_spec.rb
--------------------------------------------------------------------------------
/spec/mailers/member_mailer_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/mailers/member_mailer_spec.rb
--------------------------------------------------------------------------------
/spec/mailers/withdraw_mailer_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/mailers/withdraw_mailer_spec.rb
--------------------------------------------------------------------------------
/spec/models/account_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/account_spec.rb
--------------------------------------------------------------------------------
/spec/models/account_version_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/account_version_spec.rb
--------------------------------------------------------------------------------
/spec/models/amqp_config_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/amqp_config_spec.rb
--------------------------------------------------------------------------------
/spec/models/amqp_queue_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/amqp_queue_spec.rb
--------------------------------------------------------------------------------
/spec/models/api_token_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/api_token_spec.rb
--------------------------------------------------------------------------------
/spec/models/audit/transfer_audit_log_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/audit/transfer_audit_log_spec.rb
--------------------------------------------------------------------------------
/spec/models/bank_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/bank_spec.rb
--------------------------------------------------------------------------------
/spec/models/comment_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/comment_spec.rb
--------------------------------------------------------------------------------
/spec/models/deposit_channel_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/deposit_channel_spec.rb
--------------------------------------------------------------------------------
/spec/models/deposit_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/deposit_spec.rb
--------------------------------------------------------------------------------
/spec/models/documnet_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/documnet_spec.rb
--------------------------------------------------------------------------------
/spec/models/fund_source_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/fund_source_spec.rb
--------------------------------------------------------------------------------
/spec/models/global_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/global_spec.rb
--------------------------------------------------------------------------------
/spec/models/id_document_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/id_document_spec.rb
--------------------------------------------------------------------------------
/spec/models/identity_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/identity_spec.rb
--------------------------------------------------------------------------------
/spec/models/market_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/market_spec.rb
--------------------------------------------------------------------------------
/spec/models/matching/engine_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/matching/engine_spec.rb
--------------------------------------------------------------------------------
/spec/models/matching/executor_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/matching/executor_spec.rb
--------------------------------------------------------------------------------
/spec/models/matching/limit_order_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/matching/limit_order_spec.rb
--------------------------------------------------------------------------------
/spec/models/matching/market_order_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/matching/market_order_spec.rb
--------------------------------------------------------------------------------
/spec/models/matching/order_book_manager_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/matching/order_book_manager_spec.rb
--------------------------------------------------------------------------------
/spec/models/matching/order_book_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/matching/order_book_spec.rb
--------------------------------------------------------------------------------
/spec/models/matching/price_level_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/matching/price_level_spec.rb
--------------------------------------------------------------------------------
/spec/models/member_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/member_spec.rb
--------------------------------------------------------------------------------
/spec/models/order_ask_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/order_ask_spec.rb
--------------------------------------------------------------------------------
/spec/models/order_bid_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/order_bid_spec.rb
--------------------------------------------------------------------------------
/spec/models/order_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/order_spec.rb
--------------------------------------------------------------------------------
/spec/models/partial_tree_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/partial_tree_spec.rb
--------------------------------------------------------------------------------
/spec/models/payment_address_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/payment_address_spec.rb
--------------------------------------------------------------------------------
/spec/models/payment_transaction_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/payment_transaction_spec.rb
--------------------------------------------------------------------------------
/spec/models/proof_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/proof_spec.rb
--------------------------------------------------------------------------------
/spec/models/ticket_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/ticket_spec.rb
--------------------------------------------------------------------------------
/spec/models/token/activation_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/token/activation_spec.rb
--------------------------------------------------------------------------------
/spec/models/token/reset_password_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/token/reset_password_spec.rb
--------------------------------------------------------------------------------
/spec/models/trade_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/trade_spec.rb
--------------------------------------------------------------------------------
/spec/models/two_factor/app_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/two_factor/app_spec.rb
--------------------------------------------------------------------------------
/spec/models/two_factor/sms_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/two_factor/sms_spec.rb
--------------------------------------------------------------------------------
/spec/models/withdraw_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/withdraw_spec.rb
--------------------------------------------------------------------------------
/spec/models/worker/deposit_coin_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/worker/deposit_coin_spec.rb
--------------------------------------------------------------------------------
/spec/models/worker/matching_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/worker/matching_spec.rb
--------------------------------------------------------------------------------
/spec/models/worker/slave_book_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/models/worker/slave_book_spec.rb
--------------------------------------------------------------------------------
/spec/observers/transfer_observer_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/observers/transfer_observer_spec.rb
--------------------------------------------------------------------------------
/spec/routing/admin/members_spec.rb:
--------------------------------------------------------------------------------
1 | require 'spec_helper'
2 |
3 | describe '/admin/members' do
4 | end
5 |
--------------------------------------------------------------------------------
/spec/routing/admin/two_factors_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/routing/admin/two_factors_spec.rb
--------------------------------------------------------------------------------
/spec/routing/trade_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/routing/trade_spec.rb
--------------------------------------------------------------------------------
/spec/routing/two_factors_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/routing/two_factors_spec.rb
--------------------------------------------------------------------------------
/spec/routing/verify/google_auths_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/routing/verify/google_auths_spec.rb
--------------------------------------------------------------------------------
/spec/routing/verify/sms_auths_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/routing/verify/sms_auths_spec.rb
--------------------------------------------------------------------------------
/spec/services/coin_rpc_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/services/coin_rpc_spec.rb
--------------------------------------------------------------------------------
/spec/services/ordering_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/services/ordering_spec.rb
--------------------------------------------------------------------------------
/spec/spec_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/spec_helper.rb
--------------------------------------------------------------------------------
/spec/support/api_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/api_helper.rb
--------------------------------------------------------------------------------
/spec/support/cookie_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/cookie_helper.rb
--------------------------------------------------------------------------------
/spec/support/deposit_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/deposit_helper.rb
--------------------------------------------------------------------------------
/spec/support/i18n_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/i18n_helper.rb
--------------------------------------------------------------------------------
/spec/support/login_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/login_helper.rb
--------------------------------------------------------------------------------
/spec/support/matching_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/matching_helper.rb
--------------------------------------------------------------------------------
/spec/support/pusher.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/pusher.rb
--------------------------------------------------------------------------------
/spec/support/rspec_matchers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/rspec_matchers.rb
--------------------------------------------------------------------------------
/spec/support/two_factor_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/spec/support/two_factor_helper.rb
--------------------------------------------------------------------------------
/vendor/assets/javascripts/ZeroClipboard.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/ZeroClipboard.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/bignumber.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/bignumber.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/cookies.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/cookies.min.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/es5-sham.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/es5-sham.min.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/es5-shim.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/es5-shim.min.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/flight.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/flight.min.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/highstock.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/highstock.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/html5shiv.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/html5shiv.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/i18n.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/i18n.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/jquery-timing.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/jquery-timing.min.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/jquery.mousewheel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/jquery.mousewheel.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/list.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/list.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/ngDialog/ngDialog.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/ngDialog/ngDialog.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/pusher.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/pusher.min.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/qrcode.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/qrcode.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/respond.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/respond.min.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/scrollIt.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/scrollIt.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/underscore.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/underscore.js
--------------------------------------------------------------------------------
/vendor/assets/javascripts/wysihtml5.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/javascripts/wysihtml5.js
--------------------------------------------------------------------------------
/vendor/assets/stylesheets/csshake.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/stylesheets/csshake.min.css
--------------------------------------------------------------------------------
/vendor/assets/stylesheets/ngDialog/ngDialog.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/stylesheets/ngDialog/ngDialog.css
--------------------------------------------------------------------------------
/vendor/assets/stylesheets/selectize.default.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/stylesheets/selectize.default.scss
--------------------------------------------------------------------------------
/vendor/assets/stylesheets/selectize.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algobasket/PeatioCryptoExchange/HEAD/vendor/assets/stylesheets/selectize.scss
--------------------------------------------------------------------------------
/vendor/plugins/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------