Advertisement
Guest User

Untitled

a guest
Sep 7th, 2018
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 105.69 KB | None | 0 0
  1. irb(main):003:0>
  2. irb(main):004:0* # content_csv = 'email,amount,currency,notes
  3. irb(main):005:0* # o0khoiclub0o@gmail.com,8000,QASH,Monaco Campaign 1th place
  4. irb(main):006:0* # khoi@quoine.com,6000,QASH,Monaco Campaign 2th place
  5. irb(main):007:0*
  6. irb(main):008:0* transaction_ids = []
  7. => []
  8. irb(main):009:0> error_emails = []
  9. => []
  10. irb(main):010:0> result = []
  11. => []
  12. irb(main):011:0> CSV.parse(content_csv, headers: true) do |row|
  13. irb(main):012:1* email = row['email'].strip
  14. irb(main):013:1> notes = row['notes'].strip
  15. irb(main):014:1> amount = row['amount'].to_d
  16. irb(main):015:1> user = User.find_by_email(email)
  17. irb(main):016:1> currency = Currency.find(row['currency'].gsub(/[^0-9A-Za-z]/, '')).currency
  18. irb(main):017:1> unless user && user.app_vendor_id == Setting.default_vendor_id && user.joined_current_exchange? && currency && amount && notes
  19. irb(main):018:2> next error_emails << email
  20. irb(main):019:2> end
  21. irb(main):020:1>
  22. irb(main):021:1* account = AccountWrapper.find_or_create_by_user_id_and_currency(user.id, currency)
  23. irb(main):022:1> result << [notes, amount, account.id]
  24. irb(main):023:1> tx = TransactionWrapper.model_for_currency(currency).create(
  25. irb(main):024:2* to_account: account,
  26. irb(main):025:2* gross_amount: amount,
  27. irb(main):026:2* transaction_type: 'bounty',
  28. irb(main):027:2* notes: notes
  29. irb(main):028:2> )
  30. irb(main):029:1> transaction_ids << tx.id
  31. irb(main):030:1> end
  32. User Load (3.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'mattcrookukc@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  33. Currency Load (0.8ms) SELECT "currencies".* FROM "currencies"
  34. ContractToken Load (1.8ms) SELECT "contract_tokens".* FROM "contract_tokens"
  35. CryptoAccount Load (1.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 50510 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  36. (0.3ms) BEGIN
  37. SQL (3.2ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.238321', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1068.376068, 0.0, 'Community Manager', 'f', 'pending', NULL, 1023746, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.238321') RETURNING "id"
  38. SQL (1.3ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.257217', 'create', 74097087, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  39. (1.0ms) COMMIT
  40. User Load (1.6ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'mingsan303@yahoo.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  41. CryptoAccount Load (1.0ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 96178 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  42. (0.3ms) BEGIN
  43. SQL (1.1ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.532848', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1837.606838, 0.0, 'Community Manager', 'f', 'pending', NULL, 336013, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.532848') RETURNING "id"
  44. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.536126', 'create', 74097088, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  45. (1.1ms) COMMIT
  46. User Load (1.6ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'jaylimix@hotmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  47. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 35258 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  48. (0.3ms) BEGIN
  49. SQL (0.6ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.560371', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 854.7008547, 0.0, 'Community Manager', 'f', 'pending', NULL, 266541, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.560371') RETURNING "id"
  50. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.562988', 'create', 74097089, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  51. (0.9ms) COMMIT
  52. User Load (1.1ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'reagan.jap@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  53. CryptoAccount Load (0.6ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 40331 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  54. (0.3ms) BEGIN
  55. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.588693', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 641.025641, 0.0, 'Community Manager', 'f', 'pending', NULL, 250899, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.588693') RETURNING "id"
  56. SQL (0.4ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.591683', 'create', 74097090, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  57. (0.9ms) COMMIT
  58. User Load (0.9ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'zenden@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  59. CryptoAccount Load (0.6ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 43515 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  60. (0.2ms) BEGIN
  61. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.616126', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 641.025641, 0.0, 'Community Manager', 'f', 'pending', NULL, 289681, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.616126') RETURNING "id"
  62. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.619073', 'create', 74097091, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  63. (1.2ms) COMMIT
  64. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'jac.leong22@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  65. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 51953 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  66. (0.3ms) BEGIN
  67. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.643517', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 427.3504274, 0.0, 'Community Manager', 'f', 'pending', NULL, 1013071, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.643517') RETURNING "id"
  68. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.646792', 'create', 74097092, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  69. (1.0ms) COMMIT
  70. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'heavensea@live.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  71. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 52010 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  72. (0.3ms) BEGIN
  73. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.671207', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 213.6752137, 0.0, 'Community Manager', 'f', 'pending', NULL, 1016473, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.671207') RETURNING "id"
  74. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.674618', 'create', 74097093, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  75. (1.0ms) COMMIT
  76. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'woyazhongzhi@163.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  77. CryptoAccount Load (0.6ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 95855 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  78. (0.3ms) BEGIN
  79. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.699263', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 641.025641, 0.0, 'Community Manager', 'f', 'pending', NULL, 334765, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.699263') RETURNING "id"
  80. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.702267', 'create', 74097094, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  81. (1.1ms) COMMIT
  82. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'tstleonid@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  83. CryptoAccount Load (1.0ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 69512 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  84. (0.3ms) BEGIN
  85. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.729144', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 854.7008547, 0.0, 'Community Manager', 'f', 'pending', NULL, 308539, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.729144') RETURNING "id"
  86. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.732205', 'create', 74097095, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  87. (1.1ms) COMMIT
  88. User Load (1.6ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'zsteh@outlook.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  89. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 51902 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  90. (0.3ms) BEGIN
  91. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.756806', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 641.025641, 0.0, 'Community Manager', 'f', 'pending', NULL, 225960, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.756806') RETURNING "id"
  92. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.760000', 'create', 74097096, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  93. (1.1ms) COMMIT
  94. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'carlomile2@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  95. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 60770 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  96. (0.3ms) BEGIN
  97. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.784404', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 213.6752137, 0.0, 'Community Manager', 'f', 'pending', NULL, 1092513, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.784404') RETURNING "id"
  98. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.787551', 'create', 74097097, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  99. (1.1ms) COMMIT
  100. User Load (1.6ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'janjayabello07@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  101. CryptoAccount Load (1.0ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 372595 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  102. (0.3ms) BEGIN
  103. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.812716', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1709.401709, 0.0, 'Community Manager', 'f', 'pending', NULL, 1291269, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.812716') RETURNING "id"
  104. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.815819', 'create', 74097098, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  105. (1.0ms) COMMIT
  106. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'infixels@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  107. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 17414 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  108. (0.2ms) BEGIN
  109. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.841007', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 213.6752137, 0.0, 'Community Manager', 'f', 'pending', NULL, 1221071, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.841007') RETURNING "id"
  110. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.844197', 'create', 74097099, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  111. (1.0ms) COMMIT
  112. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'asuka4eva@hotmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  113. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 68383 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  114. (0.3ms) BEGIN
  115. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.871199', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1068.376068, 0.0, 'Community Manager', 'f', 'pending', NULL, 261964, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.871199') RETURNING "id"
  116. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.874393', 'create', 74097100, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  117. (0.9ms) COMMIT
  118. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'alexmagno84@outlook.it' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  119. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 242405 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  120. (0.3ms) BEGIN
  121. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.900759', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 854.7008547, 0.0, 'Community Manager', 'f', 'pending', NULL, 849343, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.900759') RETURNING "id"
  122. SQL (1.1ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.903865', 'create', 74097101, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  123. (1.0ms) COMMIT
  124. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'henrik@o2te.de' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  125. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 43804 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  126. (0.3ms) BEGIN
  127. SQL (1.1ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.931747', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 854.7008547, 0.0, 'Community Manager', 'f', 'pending', NULL, 266279, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.931747') RETURNING "id"
  128. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.935135', 'create', 74097102, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  129. (1.2ms) COMMIT
  130. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'abuzar97@hotmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  131. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 438757 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  132. (0.2ms) BEGIN
  133. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.960063', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1311.111111, 0.0, 'Blogger Roster', 'f', 'pending', NULL, 1368969, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.960063') RETURNING "id"
  134. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.962990', 'create', 74097103, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  135. (1.0ms) COMMIT
  136. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'familmammad@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  137. CryptoAccount Load (1.0ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 99258 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  138. (0.3ms) BEGIN
  139. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:10.987700', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1299.145299, 0.0, 'Blogger Roster', 'f', 'pending', NULL, 900813, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:10.987700') RETURNING "id"
  140. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:10.990874', 'create', 74097104, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  141. (0.9ms) COMMIT
  142. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'belsonheng@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  143. CryptoAccount Load (1.0ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 149891 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  144. (0.3ms) BEGIN
  145. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.015862', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1236.752137, 0.0, 'Blogger Roster', 'f', 'pending', NULL, 506508, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.015862') RETURNING "id"
  146. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.018971', 'create', 74097105, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  147. (0.9ms) COMMIT
  148. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'archvnyabuti@protonmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  149. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 273909 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  150. (0.3ms) BEGIN
  151. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.043291', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1411.111111, 0.0, 'Blogger Roster', 'f', 'pending', NULL, 951136, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.043291') RETURNING "id"
  152. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.046423', 'create', 74097106, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  153. (0.9ms) COMMIT
  154. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'georgemarusic@rogers.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  155. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 210028 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  156. (0.3ms) BEGIN
  157. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.070363', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 1367.521368, 0.0, 'Blogger Roster', 'f', 'pending', NULL, 774625, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.070363') RETURNING "id"
  158. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.073453', 'create', 74097107, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  159. (1.0ms) COMMIT
  160. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'yuvadeepkumar@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  161. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 58865 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  162. (0.3ms) BEGIN
  163. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.098061', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 427.3504274, 0.0, 'Blog', 'f', 'pending', NULL, 1400133, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.098061') RETURNING "id"
  164. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.101106', 'create', 74097108, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  165. (0.9ms) COMMIT
  166. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'masterdepo@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  167. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 60462 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  168. (0.2ms) BEGIN
  169. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.125983', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 641.025641, 0.0, 'blog', 'f', 'pending', NULL, 1229780, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.125983') RETURNING "id"
  170. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.129093', 'create', 74097109, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  171. (1.0ms) COMMIT
  172. User Load (1.0ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'chenmengyu314@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  173. User Load (0.8ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'wye.fueng@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  174. CryptoAccount Load (0.6ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 61045 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  175. (0.2ms) BEGIN
  176. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.153723', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1234398, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.153723') RETURNING "id"
  177. SQL (0.4ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.156590', 'create', 74097110, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  178. (1.1ms) COMMIT
  179. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  180. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  181. (0.4ms) BEGIN
  182. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.180649', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.180649') RETURNING "id"
  183. SQL (0.4ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.183260', 'create', 74097111, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  184. (1.0ms) COMMIT
  185. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  186. CryptoAccount Load (0.6ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  187. (0.2ms) BEGIN
  188. SQL (0.6ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.207008', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.207008') RETURNING "id"
  189. SQL (0.4ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.209812', 'create', 74097112, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  190. (0.9ms) COMMIT
  191. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'wye.fueng@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  192. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 61045 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  193. (0.3ms) BEGIN
  194. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.233873', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1234398, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.233873') RETURNING "id"
  195. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.236991', 'create', 74097113, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  196. (0.9ms) COMMIT
  197. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  198. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  199. (0.4ms) BEGIN
  200. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.260990', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.260990') RETURNING "id"
  201. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.264093', 'create', 74097114, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  202. (1.1ms) COMMIT
  203. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  204. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  205. (0.3ms) BEGIN
  206. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.290651', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.290651') RETURNING "id"
  207. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.293691', 'create', 74097115, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  208. (0.9ms) COMMIT
  209. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'wye.fueng@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  210. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 61045 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  211. (0.3ms) BEGIN
  212. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.317080', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1234398, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.317080') RETURNING "id"
  213. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.319958', 'create', 74097116, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  214. (1.3ms) COMMIT
  215. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  216. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  217. (0.3ms) BEGIN
  218. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.345135', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.345135') RETURNING "id"
  219. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.348481', 'create', 74097117, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  220. (1.0ms) COMMIT
  221. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  222. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  223. (0.3ms) BEGIN
  224. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.372812', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.372812') RETURNING "id"
  225. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.375807', 'create', 74097118, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  226. (1.0ms) COMMIT
  227. User Load (0.9ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'wye.fueng@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  228. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 61045 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  229. (0.3ms) BEGIN
  230. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.399005', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1234398, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.399005') RETURNING "id"
  231. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.401842', 'create', 74097119, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  232. (0.9ms) COMMIT
  233. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  234. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  235. (0.3ms) BEGIN
  236. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.425540', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.425540') RETURNING "id"
  237. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.428577', 'create', 74097120, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  238. (0.9ms) COMMIT
  239. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  240. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  241. (0.3ms) BEGIN
  242. SQL (1.1ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.452856', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.452856') RETURNING "id"
  243. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.456044', 'create', 74097121, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  244. (1.0ms) COMMIT
  245. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  246. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  247. (0.3ms) BEGIN
  248. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.481270', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.481270') RETURNING "id"
  249. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.484427', 'create', 74097122, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  250. (0.9ms) COMMIT
  251. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  252. CryptoAccount Load (1.0ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  253. (0.3ms) BEGIN
  254. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.509202', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.509202') RETURNING "id"
  255. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.512181', 'create', 74097123, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  256. (0.9ms) COMMIT
  257. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  258. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  259. (0.3ms) BEGIN
  260. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.538116', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.538116') RETURNING "id"
  261. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.541061', 'create', 74097124, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  262. (1.1ms) COMMIT
  263. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  264. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  265. (0.3ms) BEGIN
  266. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.564924', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.564924') RETURNING "id"
  267. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.567898', 'create', 74097125, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  268. (0.9ms) COMMIT
  269. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  270. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  271. (0.3ms) BEGIN
  272. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.591762', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.591762') RETURNING "id"
  273. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.594575', 'create', 74097126, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  274. (1.0ms) COMMIT
  275. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  276. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  277. (0.2ms) BEGIN
  278. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.618199', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.618199') RETURNING "id"
  279. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.621180', 'create', 74097127, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  280. (1.2ms) COMMIT
  281. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  282. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  283. (0.3ms) BEGIN
  284. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.645115', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.645115') RETURNING "id"
  285. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.648249', 'create', 74097128, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  286. (1.1ms) COMMIT
  287. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  288. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  289. (0.3ms) BEGIN
  290. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.672069', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.672069') RETURNING "id"
  291. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.675161', 'create', 74097129, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  292. (0.9ms) COMMIT
  293. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'wye.fueng@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  294. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 61045 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  295. (0.3ms) BEGIN
  296. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.698775', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1234398, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.698775') RETURNING "id"
  297. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.701850', 'create', 74097130, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  298. (1.0ms) COMMIT
  299. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  300. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  301. (0.3ms) BEGIN
  302. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.726436', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.726436') RETURNING "id"
  303. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.729525', 'create', 74097131, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  304. (1.5ms) COMMIT
  305. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  306. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  307. (0.2ms) BEGIN
  308. SQL (0.5ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.753858', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.753858') RETURNING "id"
  309. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.756416', 'create', 74097132, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  310. (1.4ms) COMMIT
  311. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  312. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  313. (0.4ms) BEGIN
  314. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.781282', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.781282') RETURNING "id"
  315. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.784246', 'create', 74097133, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  316. (1.1ms) COMMIT
  317. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'wye.fueng@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  318. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 61045 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  319. (0.2ms) BEGIN
  320. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.809078', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1234398, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.809078') RETURNING "id"
  321. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.811946', 'create', 74097134, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  322. (0.9ms) COMMIT
  323. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  324. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  325. (0.3ms) BEGIN
  326. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.836710', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.836710') RETURNING "id"
  327. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.839546', 'create', 74097135, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  328. (1.1ms) COMMIT
  329. User Load (1.1ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  330. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  331. (0.3ms) BEGIN
  332. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.863246', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.863246') RETURNING "id"
  333. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.866192', 'create', 74097136, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  334. (1.0ms) COMMIT
  335. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  336. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  337. (0.3ms) BEGIN
  338. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.890126', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.890126') RETURNING "id"
  339. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.893143', 'create', 74097137, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  340. (1.1ms) COMMIT
  341. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  342. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  343. (0.3ms) BEGIN
  344. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.918254', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.918254') RETURNING "id"
  345. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.921339', 'create', 74097138, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  346. (1.1ms) COMMIT
  347. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  348. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  349. (0.3ms) BEGIN
  350. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.946641', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.946641') RETURNING "id"
  351. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.949309', 'create', 74097139, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  352. (1.0ms) COMMIT
  353. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  354. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  355. (0.3ms) BEGIN
  356. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.973117', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.973117') RETURNING "id"
  357. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:11.976199', 'create', 74097140, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  358. (1.1ms) COMMIT
  359. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  360. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  361. (0.3ms) BEGIN
  362. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:11.999680', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:11.999680') RETURNING "id"
  363. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.002642', 'create', 74097141, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  364. (0.9ms) COMMIT
  365. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  366. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  367. (0.3ms) BEGIN
  368. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.026037', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.026037') RETURNING "id"
  369. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.028735', 'create', 74097142, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  370. (1.1ms) COMMIT
  371. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  372. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  373. (0.3ms) BEGIN
  374. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.053127', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.053127') RETURNING "id"
  375. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.055909', 'create', 74097143, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  376. (0.9ms) COMMIT
  377. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  378. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  379. (0.3ms) BEGIN
  380. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.079631', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.079631') RETURNING "id"
  381. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.082487', 'create', 74097144, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  382. (1.0ms) COMMIT
  383. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  384. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  385. (0.3ms) BEGIN
  386. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.106554', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.106554') RETURNING "id"
  387. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.109590', 'create', 74097146, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  388. (1.0ms) COMMIT
  389. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  390. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  391. (0.2ms) BEGIN
  392. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.133001', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.133001') RETURNING "id"
  393. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.136063', 'create', 74097149, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  394. (1.1ms) COMMIT
  395. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  396. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  397. (0.3ms) BEGIN
  398. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.164991', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.164991') RETURNING "id"
  399. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.167968', 'create', 74097150, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  400. (1.0ms) COMMIT
  401. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  402. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  403. (0.3ms) BEGIN
  404. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.191580', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.191580') RETURNING "id"
  405. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.194522', 'create', 74097151, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  406. (0.8ms) COMMIT
  407. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  408. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  409. (0.2ms) BEGIN
  410. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.220013', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.220013') RETURNING "id"
  411. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.223067', 'create', 74097152, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  412. (0.9ms) COMMIT
  413. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  414. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  415. (0.2ms) BEGIN
  416. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.247194', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.247194') RETURNING "id"
  417. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.250200', 'create', 74097153, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  418. (0.9ms) COMMIT
  419. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  420. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  421. (0.3ms) BEGIN
  422. SQL (1.1ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.274405', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.274405') RETURNING "id"
  423. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.277820', 'create', 74097154, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  424. (0.9ms) COMMIT
  425. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  426. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  427. (0.3ms) BEGIN
  428. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.303977', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.303977') RETURNING "id"
  429. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.307127', 'create', 74097155, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  430. (0.9ms) COMMIT
  431. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  432. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  433. (0.3ms) BEGIN
  434. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.330787', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.330787') RETURNING "id"
  435. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.333818', 'create', 74097156, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  436. (1.0ms) COMMIT
  437. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  438. CryptoAccount Load (0.7ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  439. (0.3ms) BEGIN
  440. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.358418', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.358418') RETURNING "id"
  441. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.361607', 'create', 74097157, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  442. (1.0ms) COMMIT
  443. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  444. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  445. (0.3ms) BEGIN
  446. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.387912', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.387912') RETURNING "id"
  447. SQL (0.8ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.391205', 'create', 74097158, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  448. (0.9ms) COMMIT
  449. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  450. CryptoAccount Load (1.0ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  451. (0.3ms) BEGIN
  452. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.417138', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.417138') RETURNING "id"
  453. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.420381', 'create', 74097159, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  454. (1.1ms) COMMIT
  455. User Load (1.6ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  456. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  457. (0.3ms) BEGIN
  458. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.455315', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.455315') RETURNING "id"
  459. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.460247', 'create', 74097160, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  460. (1.1ms) COMMIT
  461. User Load (1.7ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  462. CryptoAccount Load (3.6ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  463. (1.1ms) BEGIN
  464. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.501578', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.501578') RETURNING "id"
  465. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.505552', 'create', 74097161, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  466. (1.2ms) COMMIT
  467. User Load (1.3ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  468. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  469. (0.3ms) BEGIN
  470. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.530251', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.530251') RETURNING "id"
  471. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.533156', 'create', 74097162, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  472. (1.0ms) COMMIT
  473. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  474. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  475. (0.4ms) BEGIN
  476. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.558775', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.558775') RETURNING "id"
  477. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.562076', 'create', 74097163, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  478. (1.0ms) COMMIT
  479. User Load (1.6ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  480. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  481. (0.3ms) BEGIN
  482. SQL (1.0ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.619641', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.619641') RETURNING "id"
  483. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.622994', 'create', 74097164, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  484. (1.0ms) COMMIT
  485. User Load (1.6ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  486. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  487. (0.3ms) BEGIN
  488. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.647699', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.647699') RETURNING "id"
  489. SQL (0.5ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.650885', 'create', 74097165, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  490. (1.0ms) COMMIT
  491. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  492. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  493. (0.3ms) BEGIN
  494. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.675275', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.675275') RETURNING "id"
  495. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.678468', 'create', 74097166, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  496. (1.0ms) COMMIT
  497. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  498. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  499. (0.3ms) BEGIN
  500. SQL (0.9ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.703209', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.703209') RETURNING "id"
  501. SQL (0.7ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.706507', 'create', 74097167, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  502. (1.0ms) COMMIT
  503. User Load (1.4ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  504. CryptoAccount Load (1.0ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  505. (0.3ms) BEGIN
  506. SQL (0.7ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.731079', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.731079') RETURNING "id"
  507. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.734162', 'create', 74097168, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  508. (0.9ms) COMMIT
  509. User Load (1.2ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'techno.mancer@gmx.net' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  510. CryptoAccount Load (0.9ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 387003 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  511. (0.3ms) BEGIN
  512. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.758531', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 4.27350427, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 1357455, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.758531') RETURNING "id"
  513. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.761736', 'create', 74097169, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  514. (1.1ms) COMMIT
  515. User Load (1.5ms) SELECT "users".* FROM "users" WHERE (("users"."email" = 'martincaujolle19@gmail.com' AND "users"."app_vendor_id" IN (3, 29193))) LIMIT 1
  516. CryptoAccount Load (0.8ms) SELECT "crypto_accounts".* FROM "crypto_accounts" WHERE "crypto_accounts"."category" = 'main_account' AND (("crypto_accounts"."user_id" = 93897 AND "crypto_accounts"."currency" = 'QASH')) LIMIT 1
  517. (0.3ms) BEGIN
  518. SQL (0.8ms) INSERT INTO "crypto_transactions" ("action_id", "block_height", "bundle_index", "created_at", "currency", "exchange_fee", "execution_id", "from_account_id", "from_address", "from_role", "generated_for_id", "generated_for_type", "gross_amount", "network_fee", "notes", "reconciled", "state", "system_margin_side", "to_account_id", "to_address", "to_role", "transaction_hash", "transaction_type", "updated_at") VALUES (NULL, NULL, 0, '2018-09-07 11:46:12.786859', 'QASH', 0.0, NULL, NULL, NULL, NULL, NULL, NULL, 10.68376068, 0.0, 'August QASH rewards campaign', 'f', 'pending', NULL, 326377, NULL, NULL, NULL, 'bounty', '2018-09-07 11:46:12.786859') RETURNING "id"
  519. SQL (0.6ms) INSERT INTO "versions" ("created_at", "event", "item_id", "item_type", "object", "whodunnit") VALUES ('2018-09-07 11:46:12.790082', 'create', 74097170, 'CryptoTransaction', NULL, NULL) RETURNING "id"
  520. (0.9ms) COMMIT
  521. => nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement