Skip to content

Instantly share code, notes, and snippets.

@madvas
Created October 3, 2016 17:22
Show Gist options
  • Save madvas/161f91b803148c0d8d9dc382a5e3d6bc to your computer and use it in GitHub Desktop.
Save madvas/161f91b803148c0d8d9dc382a5e3d6bc to your computer and use it in GitHub Desktop.
:contract/on-tweet-loaded
(reg-event-db
:contract/on-tweet-loaded
interceptors
(fn [db [tweet]]
(update db :tweets conj (merge (select-keys tweet [:author-address :text :name])
{:date (u/big-number->date-time (:date tweet))
:tweet-key (.toNumber (:tweet-key tweet))}))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment