This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/GeekyAnts?page=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Web3 = require('web3'); | |
var BigNumber = require('bignumber.js'); | |
let Tx = require('ethereumjs-tx'); | |
var web3 = new Web3(Web3.givenProvider || 'http://3.0.185.98:9031');//mainnet | |
var Accounts = require('web3-eth-accounts'); | |
var accounts = new Accounts('http://3.0.185.98:9031');//mainnet | |
const safeJsonStringify = require('safe-json-stringify'); | |
const numberToBN = require('number-to-bn'); | |
var CircularJSON = require('circular-json'); | |
const request = require('request'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
====REACT NATIVE BASE STRUCTURE | |
• To run the code by terminal | |
• Change the directory- cd project path | |
• npm install | |
• To run – react-native run-ios/android | |
• Change App Name | |
• Delete android and ios folder | |
• Change the name and displayName in the app.json as per your App name | |
• Run command react-native-eject |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Follow the link->Understanding, Writing and Deploying Chaincode in Hyperledger Fabric | |
https://medium.com/towardsblockchain/step-by-step-understanding-writing-and-deploying-chaincode-in-hyperledger-fabric-e00ccdddc4ac | |
// Fabric Sample of Hyperledger -> Understanding, Writing and Deploying Chaincode in Hyperledger Fabric | |
https://github.com/VtpVlan-oo7/fabric-samples |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## In your Ubuntu terminal, enter the following commands: - | |
sudo apt-get install curl | |
sudo apt-get install golang-go | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$GOPATH/bin | |
sudo apt-get install nodejs | |
sudo apt-get install npm | |
sudo apt-get install python | |
sudo apt-get install docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
follow the link--> | |
https://hashnode.com/post/how-to-build-your-own-ethereum-based-erc20-token-and-launch-an-ico-in-next-20-minutes-cjbcpwzec01c93awtbij90uzn | |
OR-----!! | |
# Basics | |
Here are a few basic terms we are going to use in this article. If you are familiar with the following concepts, feel free to skip | |
to the next section. | |
Ethereum based ERC20 Tokens: In Ethereum tokens represent any tradable goods such as coins, loyalty points etc. You can create |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for this we have to install firstly -->> | |
1)-follow the link | |
https://github.com/EOSIO/eosio.cdt.git | |
2)-follow the link | |
https://github.com/EOSIO/eos.git | |
cleos wallet create -n mobiloitte --to-console | |
Creating wallet: mobiloitte | |
Save password to use in the future to unlock this wallet. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Makefile for an eosio smart contact | |
CC=eosio-cpp | |
Contract=mw-coin | |
all: | |
@echo "Building" | |
# $(CC) $(Contract).cpp -o $(Contract).wasm --abigen | |
$(CC) $(Contract).cpp -o $(Contract).wasm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This method should be suitable for any Unix system: Linux, FreeBSD, MacOS X | |
This guide was written on Linux Mint 17.1 (http://linuxmint.com/) and was tested on Ubuntu 14.04 (https://www.ubuntu.com/) | |
1) Preparing the system for cross-compilation. | |
sudo apt-get install git bison cmake flex g++ gperf ruby scons libghc-zlib-dev libghc-zlib-bindings-dev | |
2) Install MXE and dependencies | |
cd / home / <your name> / |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Follow the link for cloning the tor -> | |
https://gitweb.torproject.org/tor.git // official repo | |
https://github.com/VtpVlan-oo7/tor //unofficial repo | |
//* Tor protects your privacy on the internet by hiding the connection |
NewerOlder