Skip to content

Instantly share code, notes, and snippets.

@madvas
Created October 3, 2016 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madvas/cf591bcba89ff758d311b2ecdf0630e8 to your computer and use it in GitHub Desktop.
Save madvas/cf591bcba89ff758d311b2ecdf0630e8 to your computer and use it in GitHub Desktop.
:contract/fetch-compiled-code
(reg-event-fx
:contract/fetch-compiled-code
interceptors
(fn [{:keys [db]} [on-success]]
{:http-xhrio {:method :get
:uri (gstring/format "/contracts/build/%s.json"
(get-in db [:contract :name]))
:timeout 6000
:response-format (ajax/json-response-format {:keywords? true})
:on-success on-success
:on-failure [:log-error]}}))
(reg-event-fx
:contract/deploy-compiled-code
interceptors
(fn [{:keys [db]} [contracts]]
(let [{:keys [abi bin]} (get-in contracts [:contracts (keyword (:name (:contract db)))])]
{:web3-fx.blockchain/fns
{:web3 (:web3 db)
:fns [[web3-eth/contract-new
(js/JSON.parse abi)
{:gas 4500000
:data bin
:from (first (:my-addresses db))}
:contract/deployed
:log-error]]}})))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment