mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-10 09:35:50 +00:00
2d2d11fc9d
* use stub js for web3 externs * upgrade clojurescript Fixes: #21
13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
|
|
/*
|
|
externs for web3 injected into js context. needed for things to work with advanced cljs compilation
|
|
|
|
TODO: probably not a good idea to maintain this manually in the long run*/
|
|
|
|
var web3 = {
|
|
eth: {
|
|
accounts: [],
|
|
sendTransaction: function() {}
|
|
}
|
|
};
|