Skip to content

Commit da9ebde

Browse files
🚧 trying chain class
1 parent b4effbb commit da9ebde

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

wake_rs/wake_rs.pyi

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from os import PathLike
44
from typing import Dict, List, Sequence, Union, Optional, Any, Callable, Type, Tuple
55
from typing_extensions import Literal
66

7-
from wake.development.core import Chain, SignedAuthorization, TransactionAbc, TxParams, Eip712Domain
7+
from wake.development.core import SignedAuthorization, TransactionAbc, TxParams, Eip712Domain
88
from wake.development.primitive_types import bytes32
99

1010

@@ -293,6 +293,11 @@ class Contract(Account):
293293
class Library(Contract):
294294
pass
295295

296+
class Chain:
297+
298+
def load_rng(self, rng: bytes) -> None: ...
299+
def dump_rng(self) -> bytes: ...
300+
296301

297302
def encode_eip712_type(obj) -> str: ...
298303

0 commit comments

Comments
 (0)