From 41951618a3d6d9dd20850fbe03adc357920c206f Mon Sep 17 00:00:00 2001 From: AsadullahSoomro <46569970+AsadullahSoomro@users.noreply.github.com> Date: Wed, 15 Oct 2025 04:49:41 -0700 Subject: [PATCH 1/4] Create eip155-1650.json --- _data/chains/eip155-1650.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _data/chains/eip155-1650.json diff --git a/_data/chains/eip155-1650.json b/_data/chains/eip155-1650.json new file mode 100644 index 000000000000..fa9cc90a325b --- /dev/null +++ b/_data/chains/eip155-1650.json @@ -0,0 +1,18 @@ +{ + "name": "IIC Blockchain Testnet", + "chain": "IIC", + "rpc": [ + "https://rpc.iic-blockchain.com" + ], + "features": [], + "faucets": [], + "nativeCurrency": { + "name": "Saya Coin", + "symbol": "SAYA", + "decimals": 18 + }, + "infoURL": "https://iic-blockchain.com", + "shortName": "iic-testnet", + "chainId": 1650, + "networkId": 1650 +} From e977b79fc39d4e5f1902555b9a2f8827697ba245 Mon Sep 17 00:00:00 2001 From: AsadullahSoomro <46569970+AsadullahSoomro@users.noreply.github.com> Date: Sat, 25 Oct 2025 00:37:09 -0700 Subject: [PATCH 2/4] fix: correct IIC Blockchain Testnet JSON schema and formatting This commit fixes the following issues in eip155-1650.json: - Removed trailing spaces from all URLs (RPC, infoURL, explorer) - Added required "status": "active" field - Ensured valid EIP3091 explorer standard - Formatted JSON to comply with Prettier and schema validation Network details: - Name: IIC Blockchain Testnet - Chain ID: 1650 - Native Currency: SAYA (Saya Coin) - RPC: https://rpc.iic-blockchain.com - Explorer: https://scan.iic-blockchain.com - Info URL: https://metavtz.com --- _data/chains/eip155-1650.json | 127 ++++++++++++++++++++++++++++++++-- 1 file changed, 121 insertions(+), 6 deletions(-) diff --git a/_data/chains/eip155-1650.json b/_data/chains/eip155-1650.json index fa9cc90a325b..919486bab32d 100644 --- a/_data/chains/eip155-1650.json +++ b/_data/chains/eip155-1650.json @@ -1,18 +1,133 @@ { "name": "IIC Blockchain Testnet", + "chainId": 1650, + "shortName": "iic-testnet", "chain": "IIC", - "rpc": [ - "https://rpc.iic-blockchain.com" - ], - "features": [], + "networkId": 1650, + "nativeCurrency": { + "name": "Saya Coin", + "symbol": "SAYA", + "decimals": 18 + }, + "rpc": ["https://rpc.iic-blockchain.com"], + "faucets": [], + "infoURL": "https://metavtz.com/", + "status": "active", + "explorers": [ + { + "name": "IIC Explorer", + "url": "https://scan.iic-blockchain.com", + "standard": "EIP3091" + } + ] +}{ + "name": "IIC Blockchain Testnet", + "chainId": 1650, + "shortName": "iic-testnet", + "chain": "IIC", + "networkId": 1650, + "nativeCurrency": { + "name": "Saya Coin", + "symbol": "SAYA", + "decimals": 18 + }, + "rpc": ["https://rpc.iic-blockchain.com"], + "faucets": [], + "infoURL": "https://metavtz.com/", + "status": "active", + "explorers": [ + { + "name": "IIC Explorer", + "url": "https://scan.iic-blockchain.com", + "standard": "EIP3091" + } + ] +}{ + "name": "IIC Blockchain Testnet", + "chainId": 1650, + "shortName": "iic-testnet", + "chain": "IIC", + "networkId": 1650, + "nativeCurrency": { + "name": "Saya Coin", + "symbol": "SAYA", + "decimals": 18 + }, + "rpc": ["https://rpc.iic-blockchain.com"], "faucets": [], + "infoURL": "https://metavtz.com/", + "status": "active", + "explorers": [ + { + "name": "IIC Explorer", + "url": "https://scan.iic-blockchain.com", + "standard": "EIP3091" + } + ] +}{ + "name": "IIC Blockchain Testnet", + "chainId": 1650, + "shortName": "iic-testnet", + "chain": "IIC", + "networkId": 1650, "nativeCurrency": { "name": "Saya Coin", "symbol": "SAYA", "decimals": 18 }, - "infoURL": "https://iic-blockchain.com", + "rpc": ["https://rpc.iic-blockchain.com"], + "faucets": [], + "infoURL": "https://metavtz.com/", + "status": "active", + "explorers": [ + { + "name": "IIC Explorer", + "url": "https://scan.iic-blockchain.com", + "standard": "EIP3091" + } + ] +}{ + "name": "IIC Blockchain Testnet", + "chainId": 1650, "shortName": "iic-testnet", + "chain": "IIC", + "networkId": 1650, + "nativeCurrency": { + "name": "Saya Coin", + "symbol": "SAYA", + "decimals": 18 + }, + "rpc": ["https://rpc.iic-blockchain.com"], + "faucets": [], + "infoURL": "https://metavtz.com/", + "status": "active", + "explorers": [ + { + "name": "IIC Explorer", + "url": "https://scan.iic-blockchain.com", + "standard": "EIP3091" + } + ] +}{ + "name": "IIC Blockchain Testnet", "chainId": 1650, - "networkId": 1650 + "shortName": "iic-testnet", + "chain": "IIC", + "networkId": 1650, + "nativeCurrency": { + "name": "Saya Coin", + "symbol": "SAYA", + "decimals": 18 + }, + "rpc": ["https://rpc.iic-blockchain.com"], + "faucets": [], + "infoURL": "https://metavtz.com/", + "status": "active", + "explorers": [ + { + "name": "IIC Explorer", + "url": "https://scan.iic-blockchain.com", + "standard": "EIP3091" + } + ] } From b611a72fcdc342474f400e6028a9d21313ec0909 Mon Sep 17 00:00:00 2001 From: AsadullahSoomro <46569970+AsadullahSoomro@users.noreply.github.com> Date: Sat, 25 Oct 2025 14:08:55 +0500 Subject: [PATCH 3/4] fix: correct IIC Blockchain Testnet JSON schema and formatting This commit fixes the following issues in eip155-1650.json: - Removed trailing spaces from all URLs (RPC, infoURL, explorer) - Added required "status": "active" field - Ensured valid EIP3091 explorer standard - Formatted JSON to comply with Prettier and schema validation Network details: - Name: IIC Blockchain Testnet - Chain ID: 1650 - Native Currency: SAYA (Saya Coin) - RPC: https://rpc.iic-blockchain.com - Explorer: https://scan.iic-blockchain.com - Info URL: https://metavtz.com --- _data/chains/eip155-1650.json | 110 ---------------------------------- 1 file changed, 110 deletions(-) diff --git a/_data/chains/eip155-1650.json b/_data/chains/eip155-1650.json index 919486bab32d..ee37b0c75acc 100644 --- a/_data/chains/eip155-1650.json +++ b/_data/chains/eip155-1650.json @@ -1,127 +1,17 @@ { "name": "IIC Blockchain Testnet", - "chainId": 1650, - "shortName": "iic-testnet", "chain": "IIC", - "networkId": 1650, - "nativeCurrency": { - "name": "Saya Coin", - "symbol": "SAYA", - "decimals": 18 - }, "rpc": ["https://rpc.iic-blockchain.com"], "faucets": [], - "infoURL": "https://metavtz.com/", - "status": "active", - "explorers": [ - { - "name": "IIC Explorer", - "url": "https://scan.iic-blockchain.com", - "standard": "EIP3091" - } - ] -}{ - "name": "IIC Blockchain Testnet", - "chainId": 1650, - "shortName": "iic-testnet", - "chain": "IIC", - "networkId": 1650, "nativeCurrency": { "name": "Saya Coin", "symbol": "SAYA", "decimals": 18 }, - "rpc": ["https://rpc.iic-blockchain.com"], - "faucets": [], "infoURL": "https://metavtz.com/", - "status": "active", - "explorers": [ - { - "name": "IIC Explorer", - "url": "https://scan.iic-blockchain.com", - "standard": "EIP3091" - } - ] -}{ - "name": "IIC Blockchain Testnet", - "chainId": 1650, "shortName": "iic-testnet", - "chain": "IIC", - "networkId": 1650, - "nativeCurrency": { - "name": "Saya Coin", - "symbol": "SAYA", - "decimals": 18 - }, - "rpc": ["https://rpc.iic-blockchain.com"], - "faucets": [], - "infoURL": "https://metavtz.com/", - "status": "active", - "explorers": [ - { - "name": "IIC Explorer", - "url": "https://scan.iic-blockchain.com", - "standard": "EIP3091" - } - ] -}{ - "name": "IIC Blockchain Testnet", "chainId": 1650, - "shortName": "iic-testnet", - "chain": "IIC", - "networkId": 1650, - "nativeCurrency": { - "name": "Saya Coin", - "symbol": "SAYA", - "decimals": 18 - }, - "rpc": ["https://rpc.iic-blockchain.com"], - "faucets": [], - "infoURL": "https://metavtz.com/", - "status": "active", - "explorers": [ - { - "name": "IIC Explorer", - "url": "https://scan.iic-blockchain.com", - "standard": "EIP3091" - } - ] -}{ - "name": "IIC Blockchain Testnet", - "chainId": 1650, - "shortName": "iic-testnet", - "chain": "IIC", - "networkId": 1650, - "nativeCurrency": { - "name": "Saya Coin", - "symbol": "SAYA", - "decimals": 18 - }, - "rpc": ["https://rpc.iic-blockchain.com"], - "faucets": [], - "infoURL": "https://metavtz.com/", - "status": "active", - "explorers": [ - { - "name": "IIC Explorer", - "url": "https://scan.iic-blockchain.com", - "standard": "EIP3091" - } - ] -}{ - "name": "IIC Blockchain Testnet", - "chainId": 1650, - "shortName": "iic-testnet", - "chain": "IIC", "networkId": 1650, - "nativeCurrency": { - "name": "Saya Coin", - "symbol": "SAYA", - "decimals": 18 - }, - "rpc": ["https://rpc.iic-blockchain.com"], - "faucets": [], - "infoURL": "https://metavtz.com/", "status": "active", "explorers": [ { From 0bf439a0fe758fa3f6573e75521eb99be88f8d57 Mon Sep 17 00:00:00 2001 From: AsadullahSoomro <46569970+AsadullahSoomro@users.noreply.github.com> Date: Sat, 25 Oct 2025 04:58:43 -0700 Subject: [PATCH 4/4] fix: correct IIC Blockchain Testnet JSON schema and formatting This commit fixes the following issues in eip155-1650.json: - Removed trailing spaces from all URLs (RPC, infoURL, explorer) - Added required "status": "active" field - Ensured valid EIP3091 explorer standard - Formatted JSON to comply with Prettier and schema validation Network details: - Name: IIC Blockchain Testnet - Chain ID: 1650 - Native Currency: SAYA (Saya Coin) - RPC: https://rpc.iic-blockchain.com - Explorer: https://scan.iic-blockchain.com - Info URL: https://metavtz.com --- _data/chains/eip155-1650.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_data/chains/eip155-1650.json b/_data/chains/eip155-1650.json index ee37b0c75acc..6cf034dd842b 100644 --- a/_data/chains/eip155-1650.json +++ b/_data/chains/eip155-1650.json @@ -1,17 +1,17 @@ { "name": "IIC Blockchain Testnet", + "chainId": 1650, + "shortName": "iic-testnet", "chain": "IIC", - "rpc": ["https://rpc.iic-blockchain.com"], - "faucets": [], + "networkId": 1650, "nativeCurrency": { "name": "Saya Coin", "symbol": "SAYA", "decimals": 18 }, + "rpc": ["https://rpc.iic-blockchain.com"], + "faucets": [], "infoURL": "https://metavtz.com/", - "shortName": "iic-testnet", - "chainId": 1650, - "networkId": 1650, "status": "active", "explorers": [ {