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 @@ -59,6 +59,10 @@ MonoBehaviour:
Value: {fileID: 21300000, guid: fca1fb969526641ab92a7dadb3373992, type: 3}
- Key: 1284
Value: {fileID: 21300000, guid: 487a52377dc99420699217f27a3f7940, type: 3}
- Key: 42793
Value: {fileID: 21300000, guid: f555d6588bf384a80b090c446349e04e, type: 3}
- Key: 273
Value: {fileID: 21300000, guid: 3fd037e980ef344a698dc0f47ad1b695, type: 3}
- Key: 11155111
Value: {fileID: 21300000, guid: 3e21b6696eaaa46b1b176b8b5e6254a3, type: 3}
- Key: 80002
Expand Down Expand Up @@ -105,3 +109,5 @@ MonoBehaviour:
Value: {fileID: 21300000, guid: fca1fb969526641ab92a7dadb3373992, type: 3}
- Key: 1287
Value: {fileID: 21300000, guid: 67e27505fbd0e4afe8ed08544b5e232d, type: 3}
- Key: 128123
Value: {fileID: 21300000, guid: f555d6588bf384a80b090c446349e04e, type: 3}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public enum Chain
Soneium = 1868,
Telos = 40,
Moonbeam = 1284,
Etherlink = 42793,
XR1 = 273,

// Testnets
TestnetSepolia = 11155111,
Expand All @@ -56,6 +58,7 @@ public enum Chain
TestnetLAOSSigma = 62850,
TestnetTelos = 41,
TestnetMoonbaseAlpha = 1287,
TestnetEtherlink = 128123,

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ public static class ChainDictionaries
{ Chain.Soneium, "Soneium" },
{ Chain.Telos, "Telos" },
{ Chain.Moonbeam, "Moonbeam"},
{ Chain.Etherlink, "Etherlink" },
{ Chain.XR1, "XR1" },

{ Chain.TestnetSepolia, "Sepolia" },
{ Chain.TestnetArbitrumSepolia, "Arbitrum Sepolia" },
Expand All @@ -53,6 +55,7 @@ public static class ChainDictionaries
{ Chain.TestnetLAOSSigma, "LAOS Sigma Testnet" },
{ Chain.TestnetTelos, "Telos Testnet" },
{ Chain.TestnetMoonbaseAlpha, "Moonbase Alpha" },
{ Chain.TestnetEtherlink, "Etherlink Testnet" },
};

public static Dictionary<Chain, string> GasCurrencyOf = new Dictionary<Chain, string>()
Expand Down Expand Up @@ -80,6 +83,8 @@ public static class ChainDictionaries
{ Chain.Soneium, "ETH" },
{ Chain.Telos, "TLOS" },
{ Chain.Moonbeam, "GLMR" },
{ Chain.Etherlink, "XTZ" },
{ Chain.XR1, "XR1" },

{ Chain.TestnetSepolia, "ETH" },
{ Chain.TestnetArbitrumSepolia, "AETH" },
Expand All @@ -104,6 +109,7 @@ public static class ChainDictionaries
{ Chain.TestnetLAOSSigma, "SIGMA" },
{ Chain.TestnetTelos, "TLOS" },
{ Chain.TestnetMoonbaseAlpha, "DEV" },
{ Chain.TestnetEtherlink, "XTZ" },
};

public static Dictionary<Chain, string> NativeTokenAddressOf = new Dictionary<Chain, string>()
Expand Down Expand Up @@ -164,6 +170,8 @@ public static class ChainDictionaries
{ Chain.Soneium, "https://vk9a3tgpne6qmub8.blockscout.com/" },
{ Chain.Telos, "https://www.teloscan.io/" },
{ Chain.Moonbeam, "https://moonscan.io/"},
{ Chain.Etherlink, "https://explorer.etherlink.com/"},
{ Chain.XR1, ""}, // TDB

{ Chain.TestnetSepolia, "https://sepolia.etherscan.io/" },
{ Chain.TestnetArbitrumSepolia, "https://sepolia.arbiscan.io/" },
Expand All @@ -187,7 +195,8 @@ public static class ChainDictionaries
{ Chain.TestnetRootPorcini, "https://porcini.rootscan.io/" },
{ Chain.TestnetLAOSSigma, "https://sigma.explorer.laosnetwork.io/" },
{ Chain.TestnetTelos, "https://testnet.teloscan.io/" },
{ Chain.TestnetMoonbaseAlpha, "https://moonbase.moonscan.io/"},
{ Chain.TestnetMoonbaseAlpha, "https://moonbase.moonscan.io/" },
{ Chain.TestnetEtherlink, "https://testnet.explorer.etherlink.com/" },
};

public static Dictionary<Chain, string> ChainIdOf = new Dictionary<Chain, string>()
Expand Down Expand Up @@ -217,6 +226,8 @@ public static class ChainDictionaries
{ Chain.Soneium, "1868" },
{ Chain.Telos, "40" },
{ Chain.Moonbeam, "1284" },
{ Chain.Etherlink, "42793" },
{ Chain.XR1, "273" },

{ Chain.TestnetSepolia, "11155111" },
{ Chain.TestnetPolygonAmoy, "80002" },
Expand All @@ -240,7 +251,8 @@ public static class ChainDictionaries
{ Chain.TestnetRootPorcini, "7672" },
{ Chain.TestnetLAOSSigma, "62850" },
{ Chain.TestnetTelos, "41" },
{ Chain.TestnetMoonbaseAlpha, "1287" }
{ Chain.TestnetMoonbaseAlpha, "1287" },
{ Chain.TestnetEtherlink, "128123" },
};

public static Dictionary<string, Chain> ChainById = new Dictionary<string, Chain>()
Expand Down Expand Up @@ -268,6 +280,8 @@ public static class ChainDictionaries
{ "1868", Chain.Soneium },
{ "40", Chain.Telos },
{ "1284", Chain.Moonbeam },
{ "42793", Chain.Etherlink },
{ "273", Chain.XR1 },

{ "11155111", Chain.TestnetSepolia },
{ "80002", Chain.TestnetPolygonAmoy },
Expand All @@ -291,7 +305,8 @@ public static class ChainDictionaries
{ "7672", Chain.TestnetRootPorcini },
{ "62850", Chain.TestnetLAOSSigma },
{ "41", Chain.TestnetTelos },
{ "1287", Chain.TestnetMoonbaseAlpha }
{ "1287", Chain.TestnetMoonbaseAlpha },
{ "128123", Chain.TestnetEtherlink },
};

public static Dictionary<Chain, string> PathOf = new Dictionary<Chain, string>()
Expand Down Expand Up @@ -319,6 +334,8 @@ public static class ChainDictionaries
{ Chain.Soneium, "soneium" },
{ Chain.Telos, "telos" },
{ Chain.Moonbeam, "moonbeam" },
{ Chain.Etherlink, "etherlink" },
{ Chain.XR1, "xr1" },

{ Chain.TestnetSepolia, "sepolia" },
{ Chain.TestnetArbitrumSepolia, "arbitrum-sepolia" },
Expand All @@ -342,7 +359,8 @@ public static class ChainDictionaries
{ Chain.TestnetRootPorcini, "rootnet-porcini" },
{ Chain.TestnetLAOSSigma, "laos-sigma-testnet" },
{ Chain.TestnetTelos, "telos-testnet" },
{ Chain.TestnetMoonbaseAlpha, "moonbase-alpha" }
{ Chain.TestnetMoonbaseAlpha, "moonbase-alpha" },
{ Chain.TestnetEtherlink, "etherlink-testnet" },
};
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ internal static readonly Dictionary<string, string> IndexerNames
{ Chain.Soneium.GetChainId(), "soneium" },
{ Chain.Telos.GetChainId(), "telos" },
{ Chain.Moonbeam.GetChainId(), "moonbeam" },
{ Chain.Etherlink.GetChainId(), "etherlink" },
{ Chain.XR1.GetChainId(), "xr1" },

{ Chain.TestnetSepolia.GetChainId(), "sepolia" },
{ Chain.TestnetArbitrumSepolia.GetChainId(), "arbitrum-sepolia" },
Expand All @@ -114,7 +116,8 @@ internal static readonly Dictionary<string, string> IndexerNames
{ Chain.TestnetRootPorcini.GetChainId(), "rootnet-porcini" },
{ Chain.TestnetLAOSSigma.GetChainId(), "laos-sigma-testnet" },
{ Chain.TestnetTelos.GetChainId(), "telos-testnet" },
{ Chain.TestnetMoonbaseAlpha.GetChainId(), "moonbase-alpha" }
{ Chain.TestnetMoonbaseAlpha.GetChainId(), "moonbase-alpha" },
{ Chain.TestnetEtherlink.GetChainId(), "etherlink-testnet" }
};

private static string _builderApiKey = SequenceConfig.GetConfig().BuilderAPIKey;
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": "3.19.1",
"version": "3.19.2",
"displayName": "Sequence Embedded Wallet SDK",
"description": "A Unity SDK for the Sequence WaaS API",
"unity": "2021.3",
Expand Down