Skip to content

Commit f047bb7

Browse files
[SDK] Add Hashkey chain configuration
1 parent 8828df0 commit f047bb7

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { defineChain } from "../utils.js";
2+
3+
/**
4+
* @chain
5+
*/
6+
export const HashkeyTestnet = /*@__PURE__*/ defineChain({
7+
blockExplorers: [
8+
{
9+
name: "Hashkey Explorer",
10+
url: "https://testnet-explorer.hsk.xyz",
11+
},
12+
],
13+
rpc: "https://testnet.hsk.xyz",
14+
id: 133,
15+
name: "Hashkey Testnet",
16+
nativeCurrency: {
17+
decimals: 18,
18+
name: "HashKey Platform Token",
19+
symbol: "HSK",
20+
},
21+
testnet: true,
22+
});
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { defineChain } from "../utils.js";
2+
3+
/**
4+
* @chain
5+
*/
6+
export const Hashkey = /*@__PURE__*/ defineChain({
7+
blockExplorers: [
8+
{
9+
name: "Hashkey Explorer",
10+
url: "https://hashkey.blockscout.com/",
11+
},
12+
],
13+
rpc: "https://mainnet.hsk.xyz",
14+
id: 177,
15+
name: "Hashkey",
16+
nativeCurrency: {
17+
decimals: 18,
18+
name: "HashKey Platform Token",
19+
symbol: "HSK",
20+
},
21+
});

0 commit comments

Comments
 (0)