mirror of
https://github.com/status-im/open-bounty.git
synced 2025-02-10 08:26:30 +00:00
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() {}
|
|
}
|
|
};
|