Skip to content

Commit

Permalink
fix: other references to MPH address (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
yomarion committed May 6, 2021
1 parent 58ba868 commit fb072ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/currency/test/currency.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ describe('api/currency', () => {
it('MPH from MPH', () => {
expect(Currency.from('MPH')).toMatchObject({
type: RequestLogicTypes.CURRENCY.ERC20,
value: '0x8888801af4d980682e47f1a9036e589479e835c5',
value: '0x8888801aF4d980682e47f1A9036e589479e835C5',
network: 'mainnet',
});
});
Expand Down
4 changes: 2 additions & 2 deletions packages/currency/test/currency/erc20.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('erc20', () => {
getErc20Symbol({
network: 'mainnet',
type: RequestLogicTypes.CURRENCY.ERC20,
value: '0x8888801af4d980682e47f1a9036e589479e835c5', // MPH
value: '0x8888801aF4d980682e47f1A9036e589479e835C5', // MPH
}),
).toEqual('MPH');

Expand Down Expand Up @@ -115,7 +115,7 @@ describe('erc20', () => {
getErc20Decimals({
network: 'mainnet',
type: RequestLogicTypes.CURRENCY.ERC20,
value: '0x8888801af4d980682e47f1a9036e589479e835c5', // MPH
value: '0x8888801aF4d980682e47f1A9036e589479e835C5', // MPH
}),
).toEqual(18);

Expand Down
2 changes: 1 addition & 1 deletion packages/currency/test/token.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('api/currency Token', () => {
expect(Token.from('MPH')).toMatchObject({
symbol: 'MPH',
type: RequestLogicTypes.CURRENCY.ERC20,
value: '0x8888801af4d980682e47f1a9036e589479e835c5',
value: '0x8888801aF4d980682e47f1A9036e589479e835C5',
network: 'mainnet',
});
});
Expand Down

0 comments on commit fb072ee

Please sign in to comment.