forked from Consensys/anonymous-zether
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployer.js
119 lines (110 loc) · 5.43 KB
/
deployer.js
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
const Web3 = require("web3");
const InnerProductVerifier = require("../contract-artifacts/artifacts/InnerProductVerifier.json");
const ZetherVerifier = require("../contract-artifacts/artifacts/ZetherVerifier.json");
const BurnVerifier = require("../contract-artifacts/artifacts/BurnVerifier.json");
const CashToken = require("../contract-artifacts/artifacts/CashToken.json");
const ZSC = require("../contract-artifacts/artifacts/ZSC.json");
class Deployer {
constructor(accounts) {
const web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:22000"))
web3.transactionConfirmationBlocks = 1;
this.deployInnerProductVerifier = () => {
const contract = new web3.eth.Contract(InnerProductVerifier.abi);
return new Promise((resolve, reject) => {
contract.deploy({ data: InnerProductVerifier.bytecode }).send({ from: accounts[0], gas: 8000000 })
.on("receipt", (receipt) => {
console.log("Inner product verifier mined (address = \"" + receipt.contractAddress + "\").");
resolve(receipt);
})
.on("error", (error) => {
reject(error);
});
});
}
this.deployZetherVerifier = (ip) => {
const contract = new web3.eth.Contract(ZetherVerifier.abi);
return new Promise((resolve, reject) => {
contract.deploy({ data: ZetherVerifier.bytecode, arguments: [ip] }).send({ from: accounts[0], gas: 8000000 })
.on("receipt", (receipt) => {
console.log("Zether verifier mined (address = \"" + receipt.contractAddress + "\").");
resolve(receipt);
})
.on("error", (error) => {
reject(error);
});
});
};
this.deployBurnVerifier = (ip) => {
const contract = new web3.eth.Contract(BurnVerifier.abi);
return new Promise((resolve, reject) => {
contract.deploy({ data: BurnVerifier.bytecode, arguments: [ip] }).send({ from: accounts[0], gas: 4700000 })
.on("receipt", (receipt) => {
console.log("Burn verifier mined (address = \"" + receipt.contractAddress + "\").");
resolve(receipt);
})
.on("error", (error) => {
reject(error);
});
});
};
this.deployCashToken = () => {
const contract = new web3.eth.Contract(CashToken.abi);
return new Promise((resolve, reject) => {
contract.deploy({ data: CashToken.bytecode }).send({ from: accounts[0], gas: 4700000 })
.on("receipt", (receipt) => {
console.log("Cash token contact mined (address = \"" + receipt.contractAddress + "\").");
resolve(receipt);
})
.on("error", (error) => {
reject(error);
});
});
};
this.mintCashToken = (cash, amount) => {
const contract = new web3.eth.Contract(CashToken.abi, cash);
return new Promise((resolve, reject) => {
contract.methods.mint(accounts[0], amount).send({ from: accounts[0], gas: 4700000 })
.on("receipt", (receipt) => {
contract.methods.balanceOf(accounts[0]).call()
.then((result) => {
console.log("ERC20 funds minted (balance = " + result + ").");
resolve(receipt);
});
})
.on("error", (error) => {
reject(error);
});
});
};
this.approveCashToken = (cash, zsc, amount) => {
const contract = new web3.eth.Contract(CashToken.abi, cash);
return new Promise((resolve, reject) => {
contract.methods.approve(zsc, amount).send({ from: accounts[0], gas: 4700000 })
.on("receipt", (receipt) => {
contract.methods.allowance(accounts[0], zsc).call()
.then((result) => {
console.log("ERC funds approved for transfer to ZSC (allowance = " + result + ").");
resolve(receipt);
});
})
.on("error", (error) => {
reject(error);
});
});
};
this.deployZSC = (cash, zether, burn, epochLength) => {
const contract = new web3.eth.Contract(ZSC.abi);
return new Promise((resolve, reject) => {
contract.deploy({ data: ZSC.bytecode, arguments: [cash, zether, burn, epochLength] }).send({ from: accounts[0], gas: 4700000 })
.on("receipt", (receipt) => {
console.log("ZSC main contract deployed (address = \"" + receipt.contractAddress + "\").");
resolve(receipt);
})
.on("error", (error) => {
reject(error);
});
});
};
}
}
module.exports = Deployer;