Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public enum Chain
[Obsolete("Chain is not currently supported")]
XR1 = 273,
Somnia = 5031,
Monad = 143,
Incentiv = 24101,

// Testnets
TestnetSepolia = 11155111,
Expand All @@ -58,6 +60,7 @@ public enum Chain
TestnetTelos = 41,
TestnetMoonbaseAlpha = 1287,
TestnetEtherlink = 128123,
TestnetEtherlinkShadownet = 127823,
TestnetMonad = 10143,
TestnetSomnia = 50312,
TestnetIncentivV2 = 28802,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public ChainConfig(Chain chain, string chainId, string name, string path, string
new (Chain.Etherlink, "42793", "Etherlink", "etherlink", "https://explorer.etherlink.com/", "XTZ", "0x0000000000000000000000000000000000000000"),
new (Chain.XR1, "273", "XR1", "xr1", "", "XR1", "0x0000000000000000000000000000000000000000"),
new (Chain.Somnia, "5031", "Somnia", "somnia", "https://mainnet.somnia.w3us.site/", "STT", "0x0000000000000000000000000000000000000000"),
new (Chain.Monad, "143", "Monad", "monad", "https://mainnet-beta.monvision.io/", "MON", "0x0000000000000000000000000000000000000000"),
new (Chain.Incentiv, "24101", "Incentiv", "incentiv", "https://explorer.incentiv.io/", "CENT", "0x0000000000000000000000000000000000000000"),

// --- TESTNETS ---
new (Chain.TestnetSepolia, "11155111", "Sepolia", "sepolia", "https://sepolia.etherscan.io/", "ETH", "0x0000000000000000000000000000000000000000"),
Expand All @@ -77,6 +79,7 @@ public ChainConfig(Chain chain, string chainId, string name, string path, string
new (Chain.TestnetTelos, "41", "Telos Testnet", "telos-testnet", "https://testnet.teloscan.io/", "TLOS", "0x0000000000000000000000000000000000000000"),
new (Chain.TestnetMoonbaseAlpha, "1287", "Moonbase Alpha", "moonbase-alpha", "https://moonbase.moonscan.io/", "DEV", "0x0000000000000000000000000000000000000000"),
new (Chain.TestnetEtherlink, "128123", "Etherlink Testnet", "etherlink-testnet", "https://testnet.explorer.etherlink.com/", "XTZ", "0x0000000000000000000000000000000000000000"),
new (Chain.TestnetEtherlinkShadownet, "127823", "Etherlink Shadownet Testnet", "etherlink-shadownet-testnet", "https://shadownet.explorer.etherlink.com/", "XTZ", "0x0000000000000000000000000000000000000000"),
new (Chain.TestnetMonad, "10143", "Monad Testnet", "monad-testnet", "https://testnet.monadexplorer.com/", "MON", "0x0000000000000000000000000000000000000000"),
new (Chain.TestnetSomnia, "50312", "Somnia Testnet", "somnia-testnet", "https://somnia-testnet.socialscan.io/", "STT", "0x0000000000000000000000000000000000000000"),
new (Chain.TestnetIncentivV2, "28802", "Incentiv Testnet v2", "incentiv-testnet-v2", "https://explorer.testnet.incentiv.net/", "TCENT", "0x0000000000000000000000000000000000000000"),
Expand Down
2 changes: 1 addition & 1 deletion Packages/Sequence-Unity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xyz.0xsequence.waas-unity",
"version": "4.6.5",
"version": "4.6.6",
"displayName": "Sequence Embedded Wallet SDK",
"description": "A Unity SDK for Sequence APIs",
"unity": "2021.3",
Expand Down