@lukso/lsp25-contracts 0.15.0-rc.1 → 0.15.0-rc.5

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.
@@ -0,0 +1,108 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ILSP25ExecuteRelayCall",
4
+ "sourceName": "contracts/ILSP25ExecuteRelayCall.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "bytes",
10
+ "name": "signature",
11
+ "type": "bytes"
12
+ },
13
+ {
14
+ "internalType": "uint256",
15
+ "name": "nonce",
16
+ "type": "uint256"
17
+ },
18
+ {
19
+ "internalType": "uint256",
20
+ "name": "validityTimestamps",
21
+ "type": "uint256"
22
+ },
23
+ {
24
+ "internalType": "bytes",
25
+ "name": "payload",
26
+ "type": "bytes"
27
+ }
28
+ ],
29
+ "name": "executeRelayCall",
30
+ "outputs": [
31
+ {
32
+ "internalType": "bytes",
33
+ "name": "",
34
+ "type": "bytes"
35
+ }
36
+ ],
37
+ "stateMutability": "payable",
38
+ "type": "function"
39
+ },
40
+ {
41
+ "inputs": [
42
+ {
43
+ "internalType": "bytes[]",
44
+ "name": "signatures",
45
+ "type": "bytes[]"
46
+ },
47
+ {
48
+ "internalType": "uint256[]",
49
+ "name": "nonces",
50
+ "type": "uint256[]"
51
+ },
52
+ {
53
+ "internalType": "uint256[]",
54
+ "name": "validityTimestamps",
55
+ "type": "uint256[]"
56
+ },
57
+ {
58
+ "internalType": "uint256[]",
59
+ "name": "values",
60
+ "type": "uint256[]"
61
+ },
62
+ {
63
+ "internalType": "bytes[]",
64
+ "name": "payloads",
65
+ "type": "bytes[]"
66
+ }
67
+ ],
68
+ "name": "executeRelayCallBatch",
69
+ "outputs": [
70
+ {
71
+ "internalType": "bytes[]",
72
+ "name": "",
73
+ "type": "bytes[]"
74
+ }
75
+ ],
76
+ "stateMutability": "payable",
77
+ "type": "function"
78
+ },
79
+ {
80
+ "inputs": [
81
+ {
82
+ "internalType": "address",
83
+ "name": "from",
84
+ "type": "address"
85
+ },
86
+ {
87
+ "internalType": "uint128",
88
+ "name": "channelId",
89
+ "type": "uint128"
90
+ }
91
+ ],
92
+ "name": "getNonce",
93
+ "outputs": [
94
+ {
95
+ "internalType": "uint256",
96
+ "name": "",
97
+ "type": "uint256"
98
+ }
99
+ ],
100
+ "stateMutability": "view",
101
+ "type": "function"
102
+ }
103
+ ],
104
+ "bytecode": "0x",
105
+ "deployedBytecode": "0x",
106
+ "linkReferences": {},
107
+ "deployedLinkReferences": {}
108
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lukso/lsp25-contracts",
3
- "version": "0.15.0-rc.1",
3
+ "version": "0.15.0-rc.5",
4
4
  "description": "Package for the LSP25 Execute Relay Call standard",
5
5
  "license": "Apache-2.0",
6
6
  "author": "",
@@ -36,12 +36,14 @@
36
36
  "scripts": {
37
37
  "build": "hardhat compile --show-stack-traces",
38
38
  "build:js": "unbuild",
39
+ "build:types": "npx wagmi generate",
39
40
  "clean": "hardhat clean && rm -Rf dist/",
40
41
  "format": "prettier --write .",
41
42
  "lint": "eslint . --ext .ts,.js",
42
43
  "lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'",
43
44
  "test": "hardhat test --no-compile tests/*.test.ts",
44
- "test:coverage": "hardhat coverage"
45
+ "test:coverage": "hardhat coverage",
46
+ "package": "hardhat prepare-package"
45
47
  },
46
48
  "dependencies": {
47
49
  "@openzeppelin/contracts": "^4.9.3"