Skip to content

Commit

Permalink
Add FTM network (#179)
Browse files Browse the repository at this point in the history
* add FTM

* Update package.json

* Revert "Update package.json"

This reverts commit d96e8ee.

* fix merge conflicts & full name
  • Loading branch information
lilesper authored Feb 1, 2022
1 parent a5b0029 commit 39a6072
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ const METIS: Currency = {
decimals: 18,
}

const FTM: Currency = {
name: 'FTM',
symbol: 'FTM',
decimals: 18,
}

const DEV: Currency = {
name: 'DEV',
symbol: 'DEV',
Expand Down Expand Up @@ -203,6 +209,15 @@ const CHAIN_INFORMATION = new Map<number, ChainInformation | ChainType>([
testnet: true,
},
],
[250, {
id: 250,
nativeCurrency: FTM,
type: 'fantom',
fullName: 'Fantom Opera Mainnet',
shortName: 'FTM',
explorerUrl: `https://ftmscan.com/`,
testnet: false
}],
[
1666600000,
{
Expand Down

0 comments on commit 39a6072

Please sign in to comment.