Skip to content

Commit 4173122

Browse files
authored
Release v3.8.1 (#445)
* Docs update * Chainlink dep update * use hardhat dep for release * release 3.8.1 * use deps from gitmodules
1 parent c7c369d commit 4173122

9 files changed

+943
-27
lines changed

contracts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thirdweb-dev/contracts",
33
"description": "Collection of smart contracts deployable via the thirdweb SDK, dashboard and CLI",
4-
"version": "3.8.1-0",
4+
"version": "3.8.1",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",

docs/ERC6551AccountLib.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# ERC6551AccountLib
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+

docs/ERC6551BytecodeLib.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# ERC6551BytecodeLib
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+

docs/IERC6551Account.md

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
# IERC6551Account
2+
3+
4+
5+
6+
7+
8+
9+
*the ERC-165 identifier for this interface is `0xeff4d378`*
10+
11+
## Methods
12+
13+
### executeCall
14+
15+
```solidity
16+
function executeCall(address to, uint256 value, bytes data) external payable returns (bytes)
17+
```
18+
19+
20+
21+
22+
23+
#### Parameters
24+
25+
| Name | Type | Description |
26+
|---|---|---|
27+
| to | address | undefined |
28+
| value | uint256 | undefined |
29+
| data | bytes | undefined |
30+
31+
#### Returns
32+
33+
| Name | Type | Description |
34+
|---|---|---|
35+
| _0 | bytes | undefined |
36+
37+
### nonce
38+
39+
```solidity
40+
function nonce() external view returns (uint256)
41+
```
42+
43+
44+
45+
46+
47+
48+
#### Returns
49+
50+
| Name | Type | Description |
51+
|---|---|---|
52+
| _0 | uint256 | undefined |
53+
54+
### owner
55+
56+
```solidity
57+
function owner() external view returns (address)
58+
```
59+
60+
61+
62+
63+
64+
65+
#### Returns
66+
67+
| Name | Type | Description |
68+
|---|---|---|
69+
| _0 | address | undefined |
70+
71+
### token
72+
73+
```solidity
74+
function token() external view returns (uint256 chainId, address tokenContract, uint256 tokenId)
75+
```
76+
77+
78+
79+
80+
81+
82+
#### Returns
83+
84+
| Name | Type | Description |
85+
|---|---|---|
86+
| chainId | uint256 | undefined |
87+
| tokenContract | address | undefined |
88+
| tokenId | uint256 | undefined |
89+
90+
91+
92+
## Events
93+
94+
### TransactionExecuted
95+
96+
```solidity
97+
event TransactionExecuted(address indexed target, uint256 indexed value, bytes data)
98+
```
99+
100+
101+
102+
103+
104+
#### Parameters
105+
106+
| Name | Type | Description |
107+
|---|---|---|
108+
| target `indexed` | address | undefined |
109+
| value `indexed` | uint256 | undefined |
110+
| data | bytes | undefined |
111+
112+
113+

docs/IERC6551AccountProxy.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# IERC6551AccountProxy
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
## Methods
12+
13+
### implementation
14+
15+
```solidity
16+
function implementation() external view returns (address)
17+
```
18+
19+
20+
21+
22+
23+
24+
#### Returns
25+
26+
| Name | Type | Description |
27+
|---|---|---|
28+
| _0 | address | undefined |
29+
30+
31+
32+

0 commit comments

Comments
 (0)