Skip to content

Commit

Permalink
Merge pull request reown-com#389 from 0xzoz/add-tally-integration
Browse files Browse the repository at this point in the history
Add tally integration
  • Loading branch information
pedrouid authored Mar 22, 2022
2 parents 9b4a41e + e318fff commit 590d4a0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A single Web3 / Ethereum provider solution for all Wallets

Web3Modal is an easy-to-use library to help developers add support for multiple providers in their apps with a simple customizable configuration.

By default Web3Modal Library supports injected providers like (**Metamask**, **Dapper**, **Gnosis Safe**, **Frame**, Web3 Browsers, etc) and **WalletConnect**, You can also easily configure the library to support **Portis**, **Fortmatic**, **Squarelink**, **Torus**, **Authereum**, **D'CENT Wallet** and **Venly**.
By default Web3Modal Library supports injected providers like (**Metamask**, **Tally**, **Dapper**, **Gnosis Safe**, **Frame**, Web3 Browsers, etc) and **WalletConnect**, You can also easily configure the library to support **Portis**, **Fortmatic**, **Squarelink**, **Torus**, **Authereum**, **D'CENT Wallet** and **Venly**.

## Preview

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"ethereum",
"web3modal",
"metamask",
"tally",
"walletconnect",
"portis",
"fortmatic",
Expand Down
10 changes: 10 additions & 0 deletions src/providers/injected/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ import XDEFILogo from "../logos/xdefi.svg";
// @ts-ignore
import CeloExtensionWalletLogo from "../logos/celoExtensionWallet.svg";
// @ts-ignore
import TallyLogo from "../logos/tally.svg";
// @ts-ignore
import PortalLogo from "../logos/portal.svg";

export const FALLBACK: IProviderInfo = {
Expand Down Expand Up @@ -203,6 +205,14 @@ export const CELOINJECTED: IProviderInfo = {
check: "isCelo"
};

export const TALLYINJECTED: IProviderInfo = {
id: "injected",
name: "Tally",
logo: TallyLogo,
type: "injected",
check: "isTally"
};

export const PORTAL: IProviderInfo = {
id: "injected",
name: "Ripio Portal",
Expand Down
4 changes: 4 additions & 0 deletions src/providers/logos/tally.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 590d4a0

Please sign in to comment.