Skip to content

Commit 51aa5eb

Browse files
authored
Merge pull request #301 from 0xsequence/Feature/incentivTestnet
Added incentiv testnet
2 parents 805ba80 + 1f79020 commit 51aa5eb

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Packages/Sequence-Unity/Sequence/SequenceSDK/Ethereum/Chain.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public enum Chain
6262
TestnetMonad = 10143,
6363
TestnetSomnia = 50312,
6464
TestnetFrequency = 53716,
65+
TestnetIncentiv = 11690,
6566

6667
TestnetXaiSepolia = -1, // Xai Sepolia's testnet's chain ID is too large to fit inside an int
6768

Packages/Sequence-Unity/Sequence/SequenceSDK/Ethereum/ChainDictionaries.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public static class ChainDictionaries
5959
{ Chain.TestnetMonad, "Monad Testnet" },
6060
{ Chain.TestnetSomnia, "Somnia Testnet" },
6161
{ Chain.TestnetFrequency, "Frequency Testnet" },
62+
{ Chain.TestnetIncentiv, "Incentiv Testnet"},
6263
};
6364

6465
public static Dictionary<Chain, string> GasCurrencyOf = new Dictionary<Chain, string>()
@@ -116,6 +117,7 @@ public static class ChainDictionaries
116117
{ Chain.TestnetMonad, "MON" },
117118
{ Chain.TestnetSomnia, "STT" },
118119
{ Chain.TestnetFrequency, "BERA" },
120+
{ Chain.TestnetIncentiv, "CENT"}
119121
};
120122

121123
public static Dictionary<Chain, string> NativeTokenAddressOf = new Dictionary<Chain, string>()
@@ -206,6 +208,7 @@ public static class ChainDictionaries
206208
{ Chain.TestnetMonad, "https://testnet.monadexplorer.com/" },
207209
{ Chain.TestnetSomnia, "https://somnia-testnet.socialscan.io/" },
208210
{ Chain.TestnetFrequency, "https://explorer.frequency.zeeve.net/" },
211+
{ Chain.TestnetIncentiv, "https://explorer.testnet.incentiv.net/"}
209212
};
210213

211214
public static Dictionary<Chain, string> ChainIdOf = new Dictionary<Chain, string>()
@@ -265,6 +268,7 @@ public static class ChainDictionaries
265268
{ Chain.TestnetMonad, "10143" },
266269
{ Chain.TestnetSomnia, "50312" },
267270
{ Chain.TestnetFrequency, "53716" },
271+
{ Chain.TestnetIncentiv, "11690" }
268272
};
269273

270274
public static Dictionary<string, Chain> ChainById = new Dictionary<string, Chain>()
@@ -322,6 +326,7 @@ public static class ChainDictionaries
322326
{ "10143", Chain.TestnetMonad },
323327
{ "50312", Chain.TestnetSomnia },
324328
{ "53716", Chain.TestnetFrequency },
329+
{ "11690", Chain.TestnetIncentiv }
325330
};
326331

327332
public static Dictionary<Chain, string> PathOf = new Dictionary<Chain, string>()
@@ -379,6 +384,7 @@ public static class ChainDictionaries
379384
{ Chain.TestnetMonad, "monad-testnet" },
380385
{ Chain.TestnetSomnia, "somnia-testnet" },
381386
{ Chain.TestnetFrequency, "frequency-testnet" },
387+
{ Chain.TestnetIncentiv, "incentiv-testnet" }
382388
};
383389
}
384390
}

Packages/Sequence-Unity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xyz.0xsequence.waas-unity",
3-
"version": "4.1.3",
3+
"version": "4.2.0",
44
"displayName": "Sequence Embedded Wallet SDK",
55
"description": "A Unity SDK for Sequence APIs",
66
"unity": "2021.3",

0 commit comments

Comments
 (0)