├── .gitignore ├── LICENSE ├── README.md ├── hello ├── hello.abi ├── hello.cpp └── hello.wasm ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js └── serviceWorker.js └── ui.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | 12 | # misc 13 | .DS_Store 14 | .env.local 15 | .env.development.local 16 | .env.test.local 17 | .env.production.local 18 | 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | package-lock.json 23 | yarn.lock 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018, Respective Authors all rights reserved. 2 | 3 | The MIT License 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hello-eos-scatter 2 | # 准备工作 3 | ## 安装scatter 4 | 安装chrome scatter插件,并已绑定一个账号,具体参考 5 | https://blog.csdn.net/ITleaks/article/details/83409553 6 | 7 | ## 部署hello智能合约 8 | 使用javascript脚本js4eos,不需要eos任何环境即可编译部署智能合约,具体命令操作如下 9 | ``` 10 | //mac 11 | npm install -g js4eos 12 | //ubuntu 13 | sudo npm install -g js4eos 14 | js4eos wallet create 15 | js4eos wallet import your_private_key 16 | js4eos compile -o hello/hello.wasm hello/hello.cpp 17 | js4eos compile -g hello/hello.abi hello/hello.cpp 18 | js4eos set contract youraccount hello 19 | js4eos push action youraccount hi '["youraccount"]' -p youraccount 20 | ``` 21 | 详情请查看 22 | https://github.com/itleaks/eos-contract/tree/master/hello-exp 23 | 24 | # hello智能合约 scatter前端 25 | hello-eos-scatter是基于React和Scatterjs的网页前端,能够非常方便的使用scatter连接用户,并执行 26 | eos的智能合约。 27 | 大致代码如下 28 | ## 连接scatter 29 | ``` 30 | async connect(){ 31 | //change name 'hello-scatter' to your application's name 32 | this.connected = await ScatterJS.scatter.connect('hello-scatter') 33 | console.log(this.connected); 34 | } 35 | ``` 36 | ## 获取账号信息 37 | ``` 38 | let result = await ScatterJS.scatter.getIdentity({accounts:[this.network]}) 39 | this.currentAccount = result.accounts[0]; 40 | console.log("login success,", this.currentAccount) 41 | ``` 42 | ## 运行 43 | ``` 44 | npm install 45 | npm -g install react-scripts 46 | npm start 47 | ``` 48 | 49 | -------------------------------------------------------------------------------- /hello/hello.abi: -------------------------------------------------------------------------------- 1 | { 2 | "____comment": "This file was generated by js4eos. DO NOT EDIT - 2018-11-03T06:43:47", 3 | "version": "eosio::abi/1.0", 4 | "types": [], 5 | "structs": [{ 6 | "name": "hi", 7 | "base": "", 8 | "fields": [{ 9 | "name": "user", 10 | "type": "name" 11 | } 12 | ] 13 | } 14 | ], 15 | "actions": [{ 16 | "name": "hi", 17 | "type": "hi", 18 | "ricardian_contract": "" 19 | } 20 | ], 21 | "tables": [], 22 | "ricardian_clauses": [], 23 | "error_messages": [], 24 | "abi_extensions": [] 25 | } -------------------------------------------------------------------------------- /hello/hello.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | using namespace eosio; 4 | 5 | class hello : public eosio::contract { 6 | public: 7 | using contract::contract; 8 | 9 | /// @abi action 10 | void hi( account_name user ) { 11 | require_auth(user); 12 | print( "Hello, ", name{user} ); 13 | } 14 | }; 15 | 16 | EOSIO_ABI( hello, (hi) ) 17 | -------------------------------------------------------------------------------- /hello/hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itleaks/hello-eos-scatter/27322b12dc164501cdacc0336289f9423f40876d/hello/hello.wasm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hello-eos-scatter", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@material-ui/core": "^3.3.1", 7 | "react": "^16.6.0", 8 | "react-dom": "^16.6.0", 9 | "react-scripts": "2.0.5", 10 | "scatter-js": "^2.5.2" 11 | }, 12 | "scripts": { 13 | "start": "react-scripts start", 14 | "build": "react-scripts build", 15 | "test": "react-scripts test", 16 | "eject": "react-scripts eject" 17 | }, 18 | "eslintConfig": { 19 | "extends": "react-app" 20 | }, 21 | "browserslist": [ 22 | ">0.2%", 23 | "not dead", 24 | "not ie <= 11", 25 | "not op_mini all" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itleaks/hello-eos-scatter/27322b12dc164501cdacc0336289f9423f40876d/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 22 | React App 23 | 24 | 25 | 28 |
29 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": ".", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | animation: App-logo-spin infinite 20s linear; 7 | height: 40vmin; 8 | } 9 | 10 | .App-header { 11 | background-color: #282c34; 12 | min-height: 100vh; 13 | display: flex; 14 | flex-direction: column; 15 | align-items: center; 16 | justify-content: center; 17 | font-size: calc(10px + 2vmin); 18 | color: white; 19 | } 20 | 21 | .App-link { 22 | color: #61dafb; 23 | } 24 | 25 | @keyframes App-logo-spin { 26 | from { 27 | transform: rotate(0deg); 28 | } 29 | to { 30 | transform: rotate(360deg); 31 | } 32 | } 33 | 34 | .BtnDiv { 35 | margin-top: 100px 36 | } 37 | 38 | 39 | .Btn { 40 | margin-top: 20px 41 | } 42 | 43 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import './App.css'; 3 | import ScatterJS from 'scatter-js/dist/scatter.esm'; 4 | import Eos from 'eosjs'; 5 | import Button from '@material-ui/core/Button' 6 | 7 | class App extends Component { 8 | network = { 9 | blockchain:'eos', 10 | protocol:'https', 11 | host:'mainnet.meet.one', 12 | port:443, 13 | chainId:'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906' 14 | }; 15 | currentAccount = null; 16 | connected = false; 17 | 18 | async connect(){ 19 | //change name 'hello-scatter' to your application's name 20 | this.connected = await ScatterJS.scatter.connect('hello-scatter') 21 | console.log(this.connected); 22 | } 23 | 24 | // login with eos account via scatter 25 | async login(){ 26 | if (!this.connected) { 27 | console.log('not connected'); 28 | return; 29 | } 30 | try { 31 | let result = await ScatterJS.scatter.getIdentity({accounts:[this.network]}) 32 | this.currentAccount = result.accounts[0]; 33 | console.log("login success,", this.currentAccount) 34 | alert("login success" + JSON.stringify(this.currentAccount)) 35 | } catch (e) { 36 | alert("login fail") 37 | console.log("login fail,", e) 38 | } 39 | } 40 | 41 | async transfer(){ 42 | if (this.currentAccount == null) { 43 | await this.handleLogin() 44 | } 45 | let eos = ScatterJS.scatter.eos(this.network, Eos); 46 | try{ 47 | let result = await eos.transfer(this.currentAccount.name, 'eosfavorcomm', '0.0001 EOS', 'hello-eos-scatter, dapp demo transfer'); 48 | console.log(result) 49 | } catch(e) { 50 | console.log("error", e) 51 | } 52 | } 53 | 54 | async sayHello(){ 55 | if (this.currentAccount == null) { 56 | await this.handleLogin() 57 | } 58 | //please change hello_contract_name to your contract account 59 | let hello_contract_name = 'itleakstoken'; 60 | let eos = ScatterJS.scatter.eos(this.network, Eos); 61 | try{ 62 | let data = { 63 | user:this.currentAccount.name 64 | } 65 | let tr = await eos.transaction( 66 | { 67 | actions: [ 68 | { 69 | account: hello_contract_name, 70 | name: 'hi', 71 | authorization: [{ 72 | actor: this.currentAccount.name, 73 | permission: this.currentAccount.authority 74 | }], 75 | data, 76 | } 77 | ] 78 | } 79 | ) 80 | console.log(tr) 81 | } catch(e) { 82 | console.log("error", e) 83 | } 84 | } 85 | 86 | async logout() { 87 | ScatterJS.scatter.forgetIdentity(); 88 | } 89 | 90 | async handleLogin() { 91 | await this.connect() 92 | await this.login() 93 | } 94 | 95 | render() { 96 | document.title="hello-eos-scatter"; 97 | return ( 98 |
99 |
100 |
101 | 102 |
103 |
104 | 105 |
106 |
107 | 108 |
109 |
110 |
111 | ); 112 | } 113 | } 114 | 115 | export default App; 116 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | it('renders without crashing', () => { 6 | const div = document.createElement('div'); 7 | ReactDOM.render(, div); 8 | ReactDOM.unmountComponentAtNode(div); 9 | }); 10 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", 5 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", 6 | sans-serif; 7 | -webkit-font-smoothing: antialiased; 8 | -moz-osx-font-smoothing: grayscale; 9 | } 10 | 11 | code { 12 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", 13 | monospace; 14 | } -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import * as serviceWorker from './serviceWorker'; 6 | 7 | ReactDOM.render(, document.getElementById('root')); 8 | 9 | // If you want your app to work offline and load faster, you can change 10 | // unregister() to register() below. Note this comes with some pitfalls. 11 | // Learn more about service workers: http://bit.ly/CRA-PWA 12 | serviceWorker.unregister(); -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- 1 | // This optional code is used to register a service worker. 2 | // register() is not called by default. 3 | 4 | // This lets the app load faster on subsequent visits in production, and gives 5 | // it offline capabilities. However, it also means that developers (and users) 6 | // will only see deployed updates on subsequent visits to a page, after all the 7 | // existing tabs open on the page have been closed, since previously cached 8 | // resources are updated in the background. 9 | 10 | // To learn more about the benefits of this model and instructions on how to 11 | // opt-in, read http://bit.ly/CRA-PWA. 12 | 13 | const isLocalhost = Boolean( 14 | window.location.hostname === 'localhost' || 15 | // [::1] is the IPv6 localhost address. 16 | window.location.hostname === '[::1]' || 17 | // 127.0.0.1/8 is considered localhost for IPv4. 18 | window.location.hostname.match( 19 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ 20 | ) 21 | ); 22 | 23 | export function register(config) { 24 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { 25 | // The URL constructor is available in all browsers that support SW. 26 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location); 27 | if (publicUrl.origin !== window.location.origin) { 28 | // Our service worker won't work if PUBLIC_URL is on a different origin 29 | // from what our page is served on. This might happen if a CDN is used to 30 | // serve assets; see https://github.com/facebook/create-react-app/issues/2374 31 | return; 32 | } 33 | 34 | window.addEventListener('load', () => { 35 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; 36 | 37 | if (isLocalhost) { 38 | // This is running on localhost. Let's check if a service worker still exists or not. 39 | checkValidServiceWorker(swUrl, config); 40 | 41 | // Add some additional logging to localhost, pointing developers to the 42 | // service worker/PWA documentation. 43 | navigator.serviceWorker.ready.then(() => { 44 | console.log( 45 | 'This web app is being served cache-first by a service ' + 46 | 'worker. To learn more, visit http://bit.ly/CRA-PWA' 47 | ); 48 | }); 49 | } else { 50 | // Is not localhost. Just register service worker 51 | registerValidSW(swUrl, config); 52 | } 53 | }); 54 | } 55 | } 56 | 57 | function registerValidSW(swUrl, config) { 58 | navigator.serviceWorker 59 | .register(swUrl) 60 | .then(registration => { 61 | registration.onupdatefound = () => { 62 | const installingWorker = registration.installing; 63 | installingWorker.onstatechange = () => { 64 | if (installingWorker.state === 'installed') { 65 | if (navigator.serviceWorker.controller) { 66 | // At this point, the updated precached content has been fetched, 67 | // but the previous service worker will still serve the older 68 | // content until all client tabs are closed. 69 | console.log( 70 | 'New content is available and will be used when all ' + 71 | 'tabs for this page are closed. See http://bit.ly/CRA-PWA.' 72 | ); 73 | 74 | // Execute callback 75 | if (config && config.onUpdate) { 76 | config.onUpdate(registration); 77 | } 78 | } else { 79 | // At this point, everything has been precached. 80 | // It's the perfect time to display a 81 | // "Content is cached for offline use." message. 82 | console.log('Content is cached for offline use.'); 83 | 84 | // Execute callback 85 | if (config && config.onSuccess) { 86 | config.onSuccess(registration); 87 | } 88 | } 89 | } 90 | }; 91 | }; 92 | }) 93 | .catch(error => { 94 | console.error('Error during service worker registration:', error); 95 | }); 96 | } 97 | 98 | function checkValidServiceWorker(swUrl, config) { 99 | // Check if the service worker can be found. If it can't reload the page. 100 | fetch(swUrl) 101 | .then(response => { 102 | // Ensure service worker exists, and that we really are getting a JS file. 103 | if ( 104 | response.status === 404 || 105 | response.headers.get('content-type').indexOf('javascript') === -1 106 | ) { 107 | // No service worker found. Probably a different app. Reload the page. 108 | navigator.serviceWorker.ready.then(registration => { 109 | registration.unregister().then(() => { 110 | window.location.reload(); 111 | }); 112 | }); 113 | } else { 114 | // Service worker found. Proceed as normal. 115 | registerValidSW(swUrl, config); 116 | } 117 | }) 118 | .catch(() => { 119 | console.log( 120 | 'No internet connection found. App is running in offline mode.' 121 | ); 122 | }); 123 | } 124 | 125 | export function unregister() { 126 | if ('serviceWorker' in navigator) { 127 | navigator.serviceWorker.ready.then(registration => { 128 | registration.unregister(); 129 | }); 130 | } 131 | } 132 | -------------------------------------------------------------------------------- /ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itleaks/hello-eos-scatter/27322b12dc164501cdacc0336289f9423f40876d/ui.jpg --------------------------------------------------------------------------------