Skip to content
This repository has been archived by the owner on Dec 13, 2019. It is now read-only.

Deploy new ProxyFactory to Rinkeby #2226

Merged
merged 1 commit into from
Aug 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/cf-funding-protocol-contracts/manual-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ const Wallet = ethers.Wallet;
const InfuraProvider = ethers.providers.InfuraProvider;
const getContractAddress = ethers.utils.getContractAddress;

const provider = new InfuraProvider("kovan", process.env.INFURA_API_KEY);
const provider = new InfuraProvider("rinkeby", process.env.INFURA_API_KEY);
const wallet = Wallet.fromMnemonic(process.env.ETH_ACCOUNT_MNENOMIC).connect(provider);

new ContractFactory(ProxyFactory.abi, ProxyFactory.bytecode, wallet)
.deploy({ gasLimit: 1500000 })
.then(tx => {
tx.deployed()
.then(contract =>
console.info(JSON.stringify(contract, null, 2));
console.info(JSON.stringify(contract, null, 2))
)
.catch(console.error)
})
Expand Down
4 changes: 2 additions & 2 deletions packages/cf-funding-protocol-contracts/networks/4.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
},
{
"contractName": "ProxyFactory",
"address": "0xD891F41c4ba30b1FF4f604e30F64ae387DD85b4F",
"transactionHash": "0x1397a087547d628919b2470730c9858d9011bdf81cccc5165a95e53c05a244ad"
"address": "0x6CF0c4Ab3F1e66913c0983DC0bb1202d958ABb8f",
"transactionHash": "0xc096060ab0a2310ac08af74a0b289c4f8bef63cf99d0a380216aae3a10d3164c"
},
{
"contractName": "SingleAssetTwoPartyCoinTransferFromVirtualAppInterpreter",
Expand Down
2 changes: 1 addition & 1 deletion packages/cf-funding-protocol-contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@counterfactual/cf-funding-protocol-contracts",
"version": "0.0.3",
"version": "0.0.4",
"description": "Smart contracts for the Counterfactual multisig funding protocol",
"license": "MIT",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/local-ganache-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"typescript": "3.5.3"
},
"dependencies": {
"@counterfactual/cf-funding-protocol-contracts": "0.0.3",
"@counterfactual/cf-funding-protocol-contracts": "0.0.4",
"@counterfactual/cf-adjudicator-contracts": "0.0.1",
"@counterfactual/types": "0.0.36",
"@counterfactual/apps": "0.1.6",
Expand Down
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@counterfactual/node",
"version": "0.2.52",
"version": "0.2.53",
"main": "dist/index.js",
"iife": "dist/index.iife.js",
"types": "dist/src/index.d.ts",
Expand Down Expand Up @@ -55,7 +55,7 @@
},
"dependencies": {
"@counterfactual/cf-adjudicator-contracts": "0.0.1",
"@counterfactual/cf-funding-protocol-contracts": "0.0.3",
"@counterfactual/cf-funding-protocol-contracts": "0.0.4",
"@counterfactual/cf.js": "0.2.3",
"@counterfactual/firebase-client": "0.0.4",
"@counterfactual/types": "0.0.36",
Expand Down