@alephium/web3 0.31.0 → 0.31.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1031,7 +1031,6 @@ exports.ExecutableScript = ExecutableScript;
1031
1031
  function specialContractAddress(n) {
1032
1032
  const bytes = new Uint8Array(32).fill(0);
1033
1033
  bytes[31] = n;
1034
- console.log(utils_1.addressFromContractId);
1035
1034
  return (0, utils_1.addressFromContractId)((0, utils_1.binToHex)(bytes));
1036
1035
  }
1037
1036
  exports.CreateContractEventAddress = specialContractAddress(-1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alephium/web3",
3
- "version": "0.31.0",
3
+ "version": "0.31.1",
4
4
  "description": "A JS/TS library to interact with the Alephium platform",
5
5
  "license": "GPL",
6
6
  "main": "dist/src/index.js",
@@ -1575,7 +1575,6 @@ export interface CallContractResult<R> {
1575
1575
  function specialContractAddress(n: number): string {
1576
1576
  const bytes = new Uint8Array(32).fill(0)
1577
1577
  bytes[31] = n
1578
- console.log(addressFromContractId)
1579
1578
  return addressFromContractId(binToHex(bytes))
1580
1579
  }
1581
1580