Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/riccardopersiani/eth-fidelity-points-system
Loyalty Program Ethereum DApp
https://github.com/riccardopersiani/eth-fidelity-points-system
blockchain ethereum fidelity-point frontend-application loyalty psd2-payment smart-contracts thesis
Last synced: 12 days ago
JSON representation
Loyalty Program Ethereum DApp
- Host: GitHub
- URL: https://github.com/riccardopersiani/eth-fidelity-points-system
- Owner: riccardopersiani
- License: mit
- Created: 2018-05-20T14:54:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-07T21:09:18.000Z (over 5 years ago)
- Last Synced: 2024-11-05T12:03:21.406Z (about 2 months ago)
- Topics: blockchain, ethereum, fidelity-point, frontend-application, loyalty, psd2-payment, smart-contracts, thesis
- Language: JavaScript
- Homepage:
- Size: 67.3 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## __Fidelity Point System__ [![HitCount](http://hits.dwyl.io/riccardopersiani/fidelity-points-system-thesis.svg)](http://hits.dwyl.io/riccardopersiani/fidelity-points-system-thesis)[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.svg?v=103)](https://opensource.org/licenses/mit-license.php)
Computer Engineering Master's Degree thesis progect at Technical University of Turin.
The purpose of this project is to show a complete Ethereum DApp.
### :building_construction: __Architecture__
These are 2 main components:
__❍__ Next: server connected to the blockchain.
__❍__ Express: server for authentication via oauth and for performing the PSD2 payment.
### :page_with_curl: __Instructions__:
**1)** Go on the Infura website to get an Infura key: [infura.io](https://infura.io).
**2)** Get a mnemonic passphrase, an easy way is to get a Metamask one: [metamask.io](https://metamask.io/)
**3)** Fire up your favourite console & clone this repo somewhere:
__`❍ git clone https://github.com/riccardopersiani/fidelity-points-system-thesis.git`__
**4)** Enter this directory & install dependencies:
__`❍ cd fidelity-points-system-thesis && npm install`__
**5)** Go in `ethereum` folder & compile the code:
__`❍ cd ethereum && npx truffle compile`__
**6)** In `fidelity-points-system-thesis`, create a new file `apikeys.js` & add the mnemonic passphrase and the Infura key to it, such as:
```javascript
// apikeys.js examplemodule.exports = {
mnemonic: 'word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12',
infuraKey: '0123456789abcdef0123456789abcdef'
}
```**7)** Deploy the contracts with Truffle on a testnet, such as Kovan:
__`❍ npx truffle deploy --network kovan`__
**8)** In the main folder start the Next server:
__`❍ npm run dev`__
**9)** Go in the `psd2` folder & start the Express server:
__`❍ cd psd2 && node oauth.js`__
### :black_nib: Notes
__❍__ Note that your own Infura key and the Metamask passphrase must be kept secure. The ones provided here are simply placeholders.
__❍__ The frontend application for the loyalty point system is reachable at https://localhost:3000/
__❍__ The frontend application for the PSD2 payment is reachable at https://localhost:8085/
__*Happy developing!*__