From 6f1afc42a45f2af11c78936e87424a1e9b56c32a Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 2 Oct 2019 17:29:36 -0400 Subject: [PATCH] add deploy script, use deployed contract in example app --- .gitignore | 3 +- examples/react-example1/README.md | 7 + examples/react-example1/deploy.js | 151 ++++++++++++++++++ examples/react-example1/package.json | 2 + examples/react-example1/src/App.js | 7 +- examples/react-example1/src/MyContract.js | 148 ++--------------- .../react-example1/src/ProductComponent.js | 6 +- examples/react-example1/yarn.lock | 11 +- 8 files changed, 190 insertions(+), 145 deletions(-) create mode 100644 examples/react-example1/deploy.js diff --git a/.gitignore b/.gitignore index ead5e8c..d7ed5d6 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ subspace.db TODO test.js /dist/ -/react/ \ No newline at end of file +/react/ +/examples/react-example1/src/contract.json diff --git a/examples/react-example1/README.md b/examples/react-example1/README.md index 31a9ab3..d83ab17 100644 --- a/examples/react-example1/README.md +++ b/examples/react-example1/README.md @@ -24,6 +24,13 @@ ganache-cli ``` In a different session, execute + +``` +yarn run deploy +``` + +And then: + ``` yarn run start ``` diff --git a/examples/react-example1/deploy.js b/examples/react-example1/deploy.js new file mode 100644 index 0000000..823da1f --- /dev/null +++ b/examples/react-example1/deploy.js @@ -0,0 +1,151 @@ +const Web3 = require("web3"); +const web3 = new Web3("ws://localhost:8545"); +const fs = require("fs-extra"); + +const abi = [ + { + "constant": false, + "inputs": [ + { + "internalType": "string", + "name": "title", + "type": "string" + } + ], + "name": "createProduct", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "productId", + "type": "uint256" + }, + { + "internalType": "string", + "name": "title", + "type": "string" + } + ], + "name": "editProduct", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "products", + "outputs": [ + { + "internalType": "string", + "name": "title", + "type": "string" + }, + { + "internalType": "uint256", + "name": "latestRating", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "productId", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "rating", + "type": "uint256" + } + ], + "name": "rateProduct", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "productId", + "type": "uint256" + } + ], + "name": "newProduct", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint256", + "name": "productId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "rating", + "type": "uint256" + } + ], + "name": "Rating", + "type": "event" + } +]; + +const data = "0x608060405234801561001057600080fd5b506100556040518060400160405280600681526020017f6c6170746f70000000000000000000000000000000000000000000000000000081525061005a60201b60201c565b610253565b600160008181805490500191508161007291906100fd565b5060006001600080549050039050600080828154811061008e57fe5b90600052602060002090600202019050828160000190805190602001906100b692919061012f565b50600281600101819055507f5dc23a654c93455cd36741580d5c1fafc8f35c429bb831bc768008bd655a1219826040518082815260200191505060405180910390a1505050565b81548183558181111561012a5760020281600202836000526020600020918201910161012991906101af565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061017057805160ff191683800117855561019e565b8280016001018555821561019e579182015b8281111561019d578251825591602001919060010190610182565b5b5090506101ab91906101e6565b5090565b6101e391905b808211156101df57600080820160006101ce919061020b565b6001820160009055506002016101b5565b5090565b90565b61020891905b808211156102045760008160009055506001016101ec565b5090565b90565b50805460018160011615610100020316600290046000825580601f106102315750610250565b601f01602090049060005260206000209081019061024f91906101e6565b5b50565b610645806102626000396000f3fe60806040526004361061003f5760003560e01c806302ec06be1461004157806311eaa75a146101095780637acc0b20146101db578063f4ef9e3614610296575b005b34801561004d57600080fd5b506101076004803603602081101561006457600080fd5b810190808035906020019064010000000081111561008157600080fd5b82018360208201111561009357600080fd5b803590602001918460018302840111640100000000831117156100b557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506102db565b005b34801561011557600080fd5b506101d96004803603604081101561012c57600080fd5b81019080803590602001909291908035906020019064010000000081111561015357600080fd5b82018360208201111561016557600080fd5b8035906020019184600183028401116401000000008311171561018757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061037e565b005b3480156101e757600080fd5b50610214600480360360208110156101fe57600080fd5b81019080803590602001909291905050506103b5565b6040518080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561025a57808201518184015260208101905061023f565b50505050905090810190601f1680156102875780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b3480156102a257600080fd5b506102d9600480360360408110156102b957600080fd5b81019080803590602001909291908035906020019092919050505061047e565b005b60016000818180549050019150816102f391906104ba565b5060006001600080549050039050600080828154811061030f57fe5b90600052602060002090600202019050828160000190805190602001906103379291906104ec565b50600281600101819055507f5dc23a654c93455cd36741580d5c1fafc8f35c429bb831bc768008bd655a1219826040518082815260200191505060405180910390a1505050565b806000838154811061038c57fe5b906000526020600020906002020160000190805190602001906103b09291906104ec565b505050565b600081815481106103c257fe5b9060005260206000209060020201600091509050806000018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561046e5780601f106104435761010080835404028352916020019161046e565b820191906000526020600020905b81548152906001019060200180831161045157829003601f168201915b5050505050908060010154905082565b817ffdefdf8d82459f7b1eb157e5c44cbe6ee73d8ddd387511fe3622a3ee663b4697826040518082815260200191505060405180910390a25050565b8154818355818111156104e7576002028160020283600052602060002091820191016104e6919061056c565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061052d57805160ff191683800117855561055b565b8280016001018555821561055b579182015b8281111561055a57825182559160200191906001019061053f565b5b50905061056891906105a3565b5090565b6105a091905b8082111561059c576000808201600061058b91906105c8565b600182016000905550600201610572565b5090565b90565b6105c591905b808211156105c15760008160009055506001016105a9565b5090565b90565b50805460018160011615610100020316600290046000825580601f106105ee575061060d565b601f01602090049060005260206000209081019061060c91906105a3565b5b5056fea265627a7a723158206f33e1da3737d5722b96b323149eaa05c6eccdcb8ff4943da4758e783d210a5b64736f6c634300050b0032"; +const MyContract = new web3.eth.Contract(abi, {data, gas: "800000"}); + +(async () => { + if (!web3.eth.defaultAccount) { + const accounts = await web3.eth.getAccounts(); + web3.eth.defaultAccount = accounts[0]; + } + const instance = await MyContract.deploy().send({ from: web3.eth.defaultAccount }); + + let address = instance.options.address; + + console.dir("deployment done!"); + + fs.writeJsonSync("./src/contract.json", { address, abi }); + + console.dir("artifact written to src/contract.json") + + process.exit(0) +})() diff --git a/examples/react-example1/package.json b/examples/react-example1/package.json index bb0f04b..e9a508d 100644 --- a/examples/react-example1/package.json +++ b/examples/react-example1/package.json @@ -3,6 +3,7 @@ "version": "0.1.0", "private": true, "dependencies": { + "fs-extra": "^8.1.0", "react": "^16.9.0", "react-dom": "^16.9.0", "react-scripts": "3.1.1", @@ -11,6 +12,7 @@ }, "scripts": { "start": "react-scripts start", + "deploy": "node deploy.js", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" diff --git a/examples/react-example1/src/App.js b/examples/react-example1/src/App.js index c5b1282..741976f 100644 --- a/examples/react-example1/src/App.js +++ b/examples/react-example1/src/App.js @@ -18,13 +18,16 @@ class App extends React.Component { }; async componentDidMount() { - Product = await ProductContract.getInstance(); // - const subspace = new Subspace(web3.currentProvider); await subspace.init(); + Product = await ProductContract.getInstance(); + console.dir(Product.options) const rating$ = subspace.trackEvent(Product, "Rating").pipe(map(x => parseInt(x.rating))); + window.Product = Product; + window.web3 = web3; + this.setState({ title: subspace.trackProperty(Product, "products", [0]).pipe(map(x => x.title)), averageRating: rating$.pipe($average()), diff --git a/examples/react-example1/src/MyContract.js b/examples/react-example1/src/MyContract.js index ce63125..a3c1366 100644 --- a/examples/react-example1/src/MyContract.js +++ b/examples/react-example1/src/MyContract.js @@ -1,144 +1,16 @@ import web3 from './web3'; +import {abi, address} from './contract.json' -const abi = [ - { - "constant": false, - "inputs": [ - { - "internalType": "string", - "name": "title", - "type": "string" - } - ], - "name": "createProduct", - "outputs": [], - "payable": false, - "stateMutability": "nonpayable", - "type": "function" - }, - { - "constant": false, - "inputs": [ - { - "internalType": "uint256", - "name": "productId", - "type": "uint256" - }, - { - "internalType": "string", - "name": "title", - "type": "string" - } - ], - "name": "editProduct", - "outputs": [], - "payable": false, - "stateMutability": "nonpayable", - "type": "function" - }, - { - "constant": true, - "inputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "name": "products", - "outputs": [ - { - "internalType": "string", - "name": "title", - "type": "string" - }, - { - "internalType": "uint256", - "name": "latestRating", - "type": "uint256" - } - ], - "payable": false, - "stateMutability": "view", - "type": "function" - }, - { - "constant": false, - "inputs": [ - { - "internalType": "uint256", - "name": "productId", - "type": "uint256" - }, - { - "internalType": "uint256", - "name": "rating", - "type": "uint256" - } - ], - "name": "rateProduct", - "outputs": [], - "payable": false, - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "payable": false, - "stateMutability": "nonpayable", - "type": "constructor" - }, - { - "payable": true, - "stateMutability": "payable", - "type": "fallback" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": false, - "internalType": "uint256", - "name": "productId", - "type": "uint256" - } - ], - "name": "newProduct", - "type": "event" - }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "uint256", - "name": "productId", - "type": "uint256" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "rating", - "type": "uint256" - } - ], - "name": "Rating", - "type": "event" +const MyContract = new web3.eth.Contract(abi, {from: web3.eth.default, gas: "800000"}); +MyContract.options.address = address; + +MyContract.getInstance = async () => { + if (!web3.eth.defaultAccount) { + const accounts = await web3.eth.getAccounts(); + web3.eth.defaultAccount = accounts[0]; } -]; - -const data = "0x608060405234801561001057600080fd5b506100556040518060400160405280600681526020017f6c6170746f70000000000000000000000000000000000000000000000000000081525061005a60201b60201c565b610253565b600160008181805490500191508161007291906100fd565b5060006001600080549050039050600080828154811061008e57fe5b90600052602060002090600202019050828160000190805190602001906100b692919061012f565b50600281600101819055507f5dc23a654c93455cd36741580d5c1fafc8f35c429bb831bc768008bd655a1219826040518082815260200191505060405180910390a1505050565b81548183558181111561012a5760020281600202836000526020600020918201910161012991906101af565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061017057805160ff191683800117855561019e565b8280016001018555821561019e579182015b8281111561019d578251825591602001919060010190610182565b5b5090506101ab91906101e6565b5090565b6101e391905b808211156101df57600080820160006101ce919061020b565b6001820160009055506002016101b5565b5090565b90565b61020891905b808211156102045760008160009055506001016101ec565b5090565b90565b50805460018160011615610100020316600290046000825580601f106102315750610250565b601f01602090049060005260206000209081019061024f91906101e6565b5b50565b610645806102626000396000f3fe60806040526004361061003f5760003560e01c806302ec06be1461004157806311eaa75a146101095780637acc0b20146101db578063f4ef9e3614610296575b005b34801561004d57600080fd5b506101076004803603602081101561006457600080fd5b810190808035906020019064010000000081111561008157600080fd5b82018360208201111561009357600080fd5b803590602001918460018302840111640100000000831117156100b557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506102db565b005b34801561011557600080fd5b506101d96004803603604081101561012c57600080fd5b81019080803590602001909291908035906020019064010000000081111561015357600080fd5b82018360208201111561016557600080fd5b8035906020019184600183028401116401000000008311171561018757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061037e565b005b3480156101e757600080fd5b50610214600480360360208110156101fe57600080fd5b81019080803590602001909291905050506103b5565b6040518080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561025a57808201518184015260208101905061023f565b50505050905090810190601f1680156102875780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b3480156102a257600080fd5b506102d9600480360360408110156102b957600080fd5b81019080803590602001909291908035906020019092919050505061047e565b005b60016000818180549050019150816102f391906104ba565b5060006001600080549050039050600080828154811061030f57fe5b90600052602060002090600202019050828160000190805190602001906103379291906104ec565b50600281600101819055507f5dc23a654c93455cd36741580d5c1fafc8f35c429bb831bc768008bd655a1219826040518082815260200191505060405180910390a1505050565b806000838154811061038c57fe5b906000526020600020906002020160000190805190602001906103b09291906104ec565b505050565b600081815481106103c257fe5b9060005260206000209060020201600091509050806000018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561046e5780601f106104435761010080835404028352916020019161046e565b820191906000526020600020905b81548152906001019060200180831161045157829003601f168201915b5050505050908060010154905082565b817ffdefdf8d82459f7b1eb157e5c44cbe6ee73d8ddd387511fe3622a3ee663b4697826040518082815260200191505060405180910390a25050565b8154818355818111156104e7576002028160020283600052602060002091820191016104e6919061056c565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061052d57805160ff191683800117855561055b565b8280016001018555821561055b579182015b8281111561055a57825182559160200191906001019061053f565b5b50905061056891906105a3565b5090565b6105a091905b8082111561059c576000808201600061058b91906105c8565b600182016000905550600201610572565b5090565b90565b6105c591905b808211156105c15760008160009055506001016105a9565b5090565b90565b50805460018160011615610100020316600290046000825580601f106105ee575061060d565b601f01602090049060005260206000209081019061060c91906105a3565b5b5056fea265627a7a723158206f33e1da3737d5722b96b323149eaa05c6eccdcb8ff4943da4758e783d210a5b64736f6c634300050b0032"; - -const MyContract = new web3.eth.Contract(abi, {data, gas: "800000"}); - -MyContract.getInstance = async() => { - if (!web3.eth.defaultAccount) { - const accounts = await web3.eth.getAccounts(); - web3.eth.defaultAccount = accounts[0]; - } - const instance = await MyContract.deploy().send({from: web3.eth.defaultAccount}); - instance.options.from = web3.eth.defaultAccount; - return instance; + MyContract.options.from = web3.eth.defaultAccount; + return MyContract; } export default MyContract; diff --git a/examples/react-example1/src/ProductComponent.js b/examples/react-example1/src/ProductComponent.js index 01e5bc9..b16290c 100644 --- a/examples/react-example1/src/ProductComponent.js +++ b/examples/react-example1/src/ProductComponent.js @@ -3,9 +3,9 @@ import { observe } from "@status-im/subspace/react"; const ProductComponent = ({ maxRating, minRating, averageRating, title, balance }) => { // Handle initial state when no data is available - if (!maxRating && !minRating && !averageRating) { - return

No data

; - } + // if (!maxRating && !minRating && !averageRating) { + // return

No data

; + // } return