Skip to content

Commit 886b06b

Browse files
committed
wmatic -> wpol
1 parent b005820 commit 886b06b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@real-wagmi/sdk",
3-
"version": "1.4.5",
3+
"version": "1.4.6",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",

src/constants/weth9.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const WETH9 = {
2323
[ChainId.ETHEREUM]: ethereumTokens.weth,
2424
[ChainId.OPTIMISM]: optimismTokens.weth,
2525
[ChainId.BSC]: bscTokens.wbnb,
26-
[ChainId.POLYGON]: polygonTokens.wmatic,
26+
[ChainId.POLYGON]: polygonTokens.wpol,
2727
[ChainId.FANTOM]: fantomTokens.wftm,
2828
[ChainId.ZKSYNC]: zkSyncTokens.weth,
2929
[ChainId.KAVA]: kavaTokens.wkava,

src/entities/polygon-native-currency.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Token } from './token';
77

88
export class PolygonNativeCurrency extends NativeCurrency {
99
public constructor() {
10-
super(ChainId.POLYGON, 18, 'MATIC', 'MATIC');
10+
super(ChainId.POLYGON, 18, 'POL', 'POL');
1111
}
1212

1313
public equals(other: Currency): boolean {

src/tokens/chains/polygon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Token } from '../../entities/token';
22
import { ChainId } from '../../constants/chains';
33

44
export const polygonTokens = {
5-
wmatic: new Token(ChainId.POLYGON, '0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270', 18, 'WMATIC', 'Wrapped Matic'),
5+
wpol: new Token(ChainId.POLYGON, '0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270', 18, 'WPOL', 'Wrapped POL'),
66
wagmi: new Token(ChainId.POLYGON, '0x07Ed33a242BD9C08CA3C198e01189e35265024Da', 18, 'WAGMI', 'Wagmi'),
77
usdc: new Token(ChainId.POLYGON, '0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359', 6, 'USDC', 'USD Coin'),
88
usdt: new Token(ChainId.POLYGON, '0xc2132d05d31c914a87c6611c10748aeb04b58e8f', 6, 'USDT', '(PoS) Tether USD'),

0 commit comments

Comments
 (0)