-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ETH Net props for Callisto #35
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,8 +44,8 @@ describe('eth-net-props', () => { | |
it(`${claimPrefix} Ethereum Classic`, () => { | ||
assert.equal(explorerLinks.getExplorerAccountLinkFor('0xd8fe15886d2dcbc5d7c06394beb417aadaf1eee0', 61), 'https://blockscout.com/etc/mainnet/address/0xd8fe15886d2dcbc5d7c06394beb417aadaf1eee0') | ||
}) | ||
it(`${claimPrefix} Ethereum Classic`, () => { | ||
assert.equal(explorerLinks.getExplorerAccountLinkFor('0xd8fe15886d2dcbc5d7c06394beb417aadaf1eee0', '61'), 'https://blockscout.com/etc/mainnet/address/0xd8fe15886d2dcbc5d7c06394beb417aadaf1eee0') | ||
it(`${claimPrefix} Callisto Network`, () => { | ||
assert.equal(explorerLinks.getExplorerAccountLinkFor('0xd8fe15886d2dcbc5d7c06394beb417aadaf1eee0', 820), 'https://explorer2.callisto.network/address/0xd8fe15886d2dcbc5d7c06394beb417aadaf1eee0') | ||
}) | ||
}) | ||
|
||
|
@@ -83,6 +83,9 @@ describe('eth-net-props', () => { | |
it(`${claimPrefix} Ethereum Classic`, () => { | ||
assert.equal(explorerLinks.getExplorerTxLinkFor('0x430c90335b32fdcd92e54991668023d58b72bce836e204a81c6d97506c7137e5', 61), 'https://blockscout.com/etc/mainnet/tx/0x430c90335b32fdcd92e54991668023d58b72bce836e204a81c6d97506c7137e5') | ||
}) | ||
it(`${claimPrefix} Callisto Network`, () => { | ||
assert.equal(explorerLinks.getExplorerTxLinkFor('0x430c90335b32fdcd92e54991668023d58b72bce836e204a81c6d97506c7137e5', 820), 'https://explorer2.callisto.network/tx/0x430c90335b32fdcd92e54991668023d58b72bce836e204a81c6d97506c7137e5') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would change to the really existent tx hash in Callisto chain. The current one leads to 404 page. |
||
}) | ||
}) | ||
|
||
describe ('getExplorerTokenLinkFor()', () => { | ||
|
@@ -119,6 +122,9 @@ describe('eth-net-props', () => { | |
it(`${claimPrefix} Ethereum Classic`, () => { | ||
assert.equal(explorerLinks.getExplorerTokenLinkFor('0x1ac1c8b874c7b889113a036ba443b082554be5d0', '0xdb23145b64D0E1e15dedf47abd77cCaf3F2327d7', 61), 'https://blockscout.com/etc/mainnet/address/0xdb23145b64D0E1e15dedf47abd77cCaf3F2327d7/tokens/0x1ac1c8b874c7b889113a036ba443b082554be5d0/token_transfers') | ||
}) | ||
it(`${claimPrefix} Callisto Network`, () => { | ||
assert.equal(explorerLinks.getExplorerTokenLinkFor('0x1ac1c8b874c7b889113a036ba443b082554be5d0', '0xdb23145b64D0E1e15dedf47abd77cCaf3F2327d7', 820), 'https://explorer2.callisto.network/address/0x1ac1c8b874c7b889113a036ba443b082554be5d0') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same comment regarding incorrect path to address of the token |
||
}) | ||
}) | ||
}) | ||
|
||
|
@@ -254,6 +260,13 @@ describe('eth-net-props', () => { | |
assert.equal(ETCRPCEndpoints[0], 'https://www.ethercluster.com/etc') | ||
} | ||
}) | ||
it(`${claimPrefix} Callisto Network`, () => { | ||
const CLORPCEndpoints = RPCEndpoints.getRPCEndpoints(820) | ||
assert.equal(CLORPCEndpoints.length, 1) | ||
if (CLORPCEndpoints.length > 0) { | ||
assert.equal(CLORPCEndpoints[0], 'https://clo-geth.0xinfra.com') | ||
} | ||
}) | ||
}) | ||
|
||
claimPrefix = 'should return correct display name for' | ||
|
@@ -291,6 +304,9 @@ describe('eth-net-props', () => { | |
it(`${claimPrefix} Ethereum Classic`, () => { | ||
assert.equal(netProps.getNetworkDisplayName(61), 'Ethereum Classic') | ||
}) | ||
it(`${claimPrefix} Callisto Network`, () => { | ||
assert.equal(netProps.getNetworkDisplayName(820), 'Callisto Network') | ||
}) | ||
it(`${claimPrefix} Sokol Testnet`, () => { | ||
assert.equal(netProps.getNetworkDisplayName('77'), 'Sokol Testnet') | ||
}) | ||
|
@@ -329,6 +345,9 @@ describe('eth-net-props', () => { | |
it(`${claimPrefix} Ethereum Classic`, () => { | ||
assert.equal(netProps.getNetworkCoinName(61), 'ETC') | ||
}) | ||
it(`${claimPrefix} Callisto Network`, () => { | ||
assert.equal(netProps.getNetworkCoinName(820), 'CLO') | ||
}) | ||
|
||
it('Sokol is a testnet', () => { | ||
assert.equal(netProps.isTestnet(77), true) | ||
|
@@ -363,5 +382,8 @@ describe('eth-net-props', () => { | |
it('Ethereum Classic is a mainnet', () => { | ||
assert.equal(netProps.isTestnet(61), false) | ||
}) | ||
it('Callisto Network is a mainnet', () => { | ||
assert.equal(netProps.isTestnet(820), false) | ||
}) | ||
}) | ||
}) | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've checked that address page in Callisto explorer is available at
/addr/...
path and not at/address/
. I suppose path should be changed here in the tests and in the logic.