Skip to content

Commit 16403d5

Browse files
committed
sdk version bump, removed some logs
1 parent 294b001 commit 16403d5

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

Packages/Sequence-Unity/Sequence/SequenceSDK/EcosystemWallet/Primitives/Config/Topology.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ public Leaf FindSignerLeaf(Address address)
9191
{
9292
if (signerLeaf.address.Equals(address))
9393
{
94-
Debug.Log($"return signer leaf {signerLeaf.address}");
9594
return signerLeaf;
9695
}
9796
}

Packages/Sequence-Unity/Sequence/SequenceSDK/EcosystemWallet/Wallet/SequenceWallet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,14 @@ public async Task<bool> SupportsTransaction(Chain chain, ITransaction[] transact
174174
}
175175
catch (Exception e)
176176
{
177-
SequenceLog.Exception(e);
177+
SequenceLog.Info(e.Message);
178178
return false;
179179
}
180180
}
181181

182182
public async Task<string> SendTransactionThroughEcosystem(Chain chain, ITransaction transaction)
183183
{
184-
var chainId = BigInteger.Parse(ChainDictionaries.ChainIdOf[chain]);
184+
var chainId = chain.AsBigInteger();
185185
var call = transaction.GetCall();
186186

187187
var args = new SendWalletTransactionArgs

Packages/Sequence-Unity/Sequence/SequenceSDK/EcosystemWallet/Wallet/WalletState.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ private async Task UpdateNonce(Chain chain, BigInteger space)
195195
});
196196

197197
Nonce = response == "0x" ? 0 : response.HexStringToBigInteger();
198-
Debug.Log($"Nonce {Nonce}");
199198
}
200199

201200
private string RetrieveString(string key)

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": "5.0.4",
3+
"version": "5.0.5",
44
"displayName": "Sequence Embedded Wallet SDK",
55
"description": "A Unity SDK for Sequence APIs",
66
"unity": "2021.3",

0 commit comments

Comments
 (0)