Skip to content

Commit bb60217

Browse files
committed
Bump libplanet to 0.38.0
1 parent 01d534a commit bb60217

File tree

7 files changed

+24
-4
lines changed

7 files changed

+24
-4
lines changed
Binary file not shown.
Binary file not shown.

planet-clicker/Assets/LibplanetUnity/Packages/Libplanet.Node.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Binary file not shown.

planet-clicker/Assets/LibplanetUnity/Packages/Libplanet.xml

+18-4
Original file line numberDiff line numberDiff line change
@@ -1383,14 +1383,14 @@
13831383
<exception cref="T:System.ArgumentNullException">Thrown when <c>null</c> was
13841384
passed to <paramref name="hex"/>.</exception>
13851385
<exception cref="T:System.ArgumentException">Thrown when the given <paramref
1386-
name="hex"/> did not lengthen 40 characters.</exception>
1386+
name="hex"/> did not lengthen 40 characters except 0x prefix.</exception>
13871387
<exception cref="T:System.ArgumentException">Thrown when the given <paramref
13881388
name="hex"/> is mixed-case and the checksum is invalid.</exception>
13891389
<exception cref="T:System.ArgumentException">Thrown when the given <paramref
13901390
name="hex"/> does not consist of ASCII characters.</exception>
1391-
<param name="hex">A 40 characters hexadecimal address string to
1392-
derive the corresponding <see cref="T:Libplanet.Address"/> from. The string
1393-
should be all lower-case or mixed-case which follows <a
1391+
<param name="hex">A 40 characters or included 0x prefix hexadecimal
1392+
address string to derive the corresponding <see cref="T:Libplanet.Address"/> from.
1393+
The string should be all lower-case or mixed-case which follows <a
13941394
href="https://github.com/ethereum/EIPs/blob/master/EIPS/eip-55.md"
13951395
>EIP 55</a>.</param>
13961396
</member>
@@ -6334,6 +6334,20 @@
63346334
using <see cref="P:Libplanet.Crypto.PrivateKey.ByteArray"/> property.</remarks>
63356335
<seealso cref="P:Libplanet.Crypto.PrivateKey.ByteArray"/>
63366336
</member>
6337+
<member name="M:Libplanet.Crypto.PrivateKey.#ctor(System.String)">
6338+
<summary>
6339+
Creates a <see cref="T:Libplanet.Crypto.PrivateKey"/> instance from the given hexadecimal
6340+
<see cref="T:System.String"/> (i.e.,<paramref name="hex"/>).
6341+
</summary>
6342+
<param name="hex">A hexadecimal string of a private key's
6343+
<see cref="P:Libplanet.Crypto.PrivateKey.ByteArray"/>.</param>
6344+
<exception cref="T:System.ArgumentNullException">Thrown when the given <paramref name="hex"/>
6345+
string is <c>null</c>.</exception>
6346+
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when the length of the given
6347+
<paramref name="hex"/> string is too short or too long.</exception>
6348+
<exception cref="T:System.FormatException">Thrown when the given <paramref name="hex"/> string is
6349+
not a valid hexadecimal string.</exception>
6350+
</member>
63376351
<member name="P:Libplanet.Crypto.PrivateKey.PublicKey">
63386352
<summary>
63396353
The corresponding <see cref="T:Libplanet.Crypto.PublicKey"/> of

0 commit comments

Comments
 (0)