All Projects → portis-project → Web Sdk

portis-project / Web Sdk

Licence: mit
Portis Web SDK

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Web Sdk

Trace
Supply chain transparency platform proof-of-concept based on the Ethereum blockchain ✍️
Stars: ✭ 52 (-20%)
Mutual labels:  blockchain, ethereum, dapp, web3
Trust Wallet Ios
📱 Trust - Ethereum Wallet and Web3 DApp Browser for iOS
Stars: ✭ 1,228 (+1789.23%)
Mutual labels:  blockchain, ethereum, dapp, web3
Ethvtx
🌀🛰 ethereum-ready & framework-agnostic redux store configuration
Stars: ✭ 125 (+92.31%)
Mutual labels:  blockchain, ethereum, dapp, web3
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+546.15%)
Mutual labels:  blockchain, ethereum, dapp, web3
Eth Vue
Featured in Awesome Vue [https://github.com/vuejs/awesome-vue], a curated list maintained by vuejs of awesome things related to the Vue.js framework, and Awesome List [https://awesomelists.net/150-Vue.js/3863-Open+Source/18749-DOkwufulueze-eth-vue], this Truffle Box provides everything you need to quickly build Ethereum dApps that have authentication features with vue, including configuration for easy deployment to the Ropsten Network. It's also Gravatar-enabled. Connecting to a running Ganache blockchain network from Truffle is also possible -- for fast development and testing purposes. Built on Truffle 5 and Vue 3, eth-vue uses vuex for state management, vuex-persist for local storage of app state, and vue-router for routing. Authentication functionalities are handled by Smart Contracts running on the Ethereum blockchain.
Stars: ✭ 171 (+163.08%)
Mutual labels:  blockchain, ethereum, dapp, web3
Web3e
Web3E Ethereum for Embedded devices running Arduino framework
Stars: ✭ 50 (-23.08%)
Mutual labels:  ethereum, dapp, web3
Client
(Aragon 1) Create and manage decentralized organizations on Ethereum.
Stars: ✭ 733 (+1027.69%)
Mutual labels:  blockchain, ethereum, dapp
Typechain
🔌 TypeScript bindings for Ethereum smart contracts
Stars: ✭ 769 (+1083.08%)
Mutual labels:  blockchain, ethereum, web3
Web3 React
🧰 A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps
Stars: ✭ 788 (+1112.31%)
Mutual labels:  ethereum, dapp, web3
Blockchain Reading List
Blockchain Manchester Meetups, Talks and Reading List
Stars: ✭ 17 (-73.85%)
Mutual labels:  blockchain, ethereum, dapp
Eth.social
An Ethereum dApp for posting social events.
Stars: ✭ 17 (-73.85%)
Mutual labels:  ethereum, dapp, web3
Ethereumbook
Mastering Ethereum, by Andreas M. Antonopoulos, Gavin Wood
Stars: ✭ 11,663 (+17843.08%)
Mutual labels:  blockchain, ethereum, dapp
Cakeshop
An integrated development environment and SDK for Ethereum-like ledgers
Stars: ✭ 491 (+655.38%)
Mutual labels:  blockchain, ethereum, sdk
Awesome Blockchain
区块链白皮书、书籍、交易所、币种、自媒体等资源汇总 💯
Stars: ✭ 747 (+1049.23%)
Mutual labels:  blockchain, ethereum, dapp
Eattheblocks
Source code for Eat The Blocks, a screencast for Ethereum Dapp Developers
Stars: ✭ 431 (+563.08%)
Mutual labels:  blockchain, ethereum, web3
Subspace
Library for Reactive Dapp Development with auto syncing and caching capabilities
Stars: ✭ 57 (-12.31%)
Mutual labels:  blockchain, ethereum, dapp
Web3studio Sojourn
A React Native DevKit with code for a Web3 Decentralized Data Storage Pattern.
Stars: ✭ 29 (-55.38%)
Mutual labels:  blockchain, dapp, web3
Eth Hodler
A simple DApp & ERC20 token written in Solidity running on the Ethereum blockchain www.hdao.org
Stars: ✭ 31 (-52.31%)
Mutual labels:  blockchain, ethereum, dapp
The Journal Of Blockchain
区块链自媒体、专注区块链技术学习和实践、IPFS/Filecoin、Bitcoin、Ethereum、EOS、Cosmos、区块链、白皮书、Coinmarketcap、Coindesk、Safe Network、Telegram、Docker、社会治理、经济激励
Stars: ✭ 63 (-3.08%)
Mutual labels:  blockchain, ethereum, dapp
Buidl
A browser-based IDE for creating, deploying, and sharing blockchain apps (DApps, or decentralized apps). Publish your first blockchain DApps in 5 minutes! Here is how: https://docs.secondstate.io/buidl-developer-tool/getting-started
Stars: ✭ 376 (+478.46%)
Mutual labels:  blockchain, ethereum, dapp

Portis

Twitter license

Quick Start

It should take no more than 5 minutes to get started with Portis 🚀

  1. Register a DApp in the Portis Dashboard, and copy your DApp ID.

  2. Install Portis and Web3

    npm install @portis/web3 web3
    
  3. Import and initialize a web3 instance

    import Portis from '@portis/web3';
    import Web3 from 'web3';
    
    const portis = new Portis('YOUR_DAPP_ID', 'mainnet');
    const web3 = new Web3(portis.provider);
    
  4. Verify everything works by calling a web3 method such as getAccounts:

    web3.eth.getAccounts((error, accounts) => {
      console.log(accounts);
    });
    
  5. You are good to go! 👍

For more information see our docs 📕

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].