Skip to content

Commit a9da37a

Browse files
committed
fix: replace testnet:true with status field, fix rpc array format, update faucet URL
- eip155-7605: remove 'testnet:true' (not in schema, additionalProperties:false causes JSON schema validation failure). Replace with 'status:incubating'. - eip155-7605: fix faucet URL from POST API endpoint to browser-accessible platform URL (https://platform-testnet.anchorchain.co.za). - Both files: collapse single-item rpc arrays to one line (prettier format). - eip155-7206: add 'status:active'.
1 parent 669a7b9 commit a9da37a

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

_data/chains/eip155-7206.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
22
"name": "AnchorChain",
33
"chain": "ANCH",
4-
"rpc": [
5-
"https://api.anchorchain.co.za/rpc"
6-
],
4+
"rpc": ["https://api.anchorchain.co.za/rpc"],
75
"faucets": [],
86
"nativeCurrency": {
97
"name": "Anchor",
@@ -14,6 +12,7 @@
1412
"shortName": "anch",
1513
"chainId": 7206,
1614
"networkId": 7206,
15+
"status": "active",
1716
"explorers": [
1817
{
1918
"name": "AnchorChain Explorer",

_data/chains/eip155-7605.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
{
22
"name": "AnchorChain Testnet",
33
"chain": "ANCH",
4-
"rpc": [
5-
"https://api-testnet.anchorchain.co.za/rpc"
6-
],
7-
"faucets": [
8-
"https://api-testnet.anchorchain.co.za/v1/faucet/claim"
9-
],
4+
"rpc": ["https://api-testnet.anchorchain.co.za/rpc"],
5+
"faucets": ["https://platform-testnet.anchorchain.co.za"],
106
"nativeCurrency": {
117
"name": "Anchor",
128
"symbol": "ANCH",
@@ -16,7 +12,7 @@
1612
"shortName": "anch-testnet",
1713
"chainId": 7605,
1814
"networkId": 7605,
19-
"testnet": true,
15+
"status": "incubating",
2016
"explorers": [
2117
{
2218
"name": "AnchorChain Testnet Explorer",

0 commit comments

Comments
 (0)