forked from oladotunr/truffle-contract
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
64 lines (49 loc) · 2.58 KB
/
index.js
File metadata and controls
64 lines (49 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
var Schema = require("truffle-contract-schema");
var Contract = require("./contract.js");
var contract = function(options) {
options = Schema.normalizeOptions(options);
var binary = Schema.generateBinary(options, {}, {dirty: false});
// Note we don't use `new` here at all. This will cause the class to
// "mutate" instead of instantiate an instance.
return Contract.clone(binary);
};
// To be used to upgrade old .sol.js abstractions
contract.fromSolJS = function(soljs_abstraction, ignore_default_network) {
if (ignore_default_network == null) {
ignore_default_network = false;
}
// Find the latest binary
var latest_network = null;
var latest_network_updated_at = 0;
var networks = {};
Object.keys(soljs_abstraction.all_networks).forEach(function(network_name) {
if (network_name == "default") {
if (ignore_default_network == true ) {
return;
} else {
throw new Error(soljs_abstraction.contract_name + " has legacy 'default' network artifacts stored within it. Generally these artifacts were a result of running Truffle on a development environment -- in order to store contracts with truffle-contract, all networks must have an identified id. If you're sure this default network represents your development environment, you can ignore processing of the default network by passing `true` as the second argument to this function. However, if you think this network represents artifacts you'd like to keep (i.e., addresses deployed to the main network), you'll need to edit your .sol.js file yourself and change the default network id to be the id of your desired network. For most people, ignoring the default network is the correct option.");
}
}
if (soljs_abstraction.all_networks[network_name].updated_at > latest_network_updated_at) {
latest_network = network_name;
latest_network_updated_at = soljs_abstraction.all_networks[network_name].updated_at;
}
networks[network_name] = {};
["address", "events", "links", "updated_at"].forEach(function(key) {
networks[network_name][key] = soljs_abstraction.all_networks[network_name][key];
})
});
latest_network = soljs_abstraction.all_networks[latest_network] || {};
var json = {
contract_name: soljs_abstraction.contract_name,
unlinked_binary: latest_network.unlinked_binary,
abi: latest_network.abi,
networks: networks,
updated_at: latest_network_updated_at == 0 ? undefined : latest_network_updated_at
};
return contract(json);
};
module.exports = contract;
if (typeof window !== "undefined") {
window.TruffleContract = contract;
}