Types
safe_kit.types
SafeAccountConfig
Bases: BaseModel
Configuration for deploying a new Safe.
Source code in safe_kit/types.py
6 7 8 9 10 11 12 13 14 15 16 17 18 | |
SafeCollectibleResponse
Bases: BaseModel
NFT/Collectible owned by a Safe.
Source code in safe_kit/types.py
201 202 203 204 205 206 207 208 209 210 211 212 213 | |
SafeCreationInfoResponse
Bases: BaseModel
Information about Safe creation.
Source code in safe_kit/types.py
190 191 192 193 194 195 196 197 198 | |
SafeDataDecoderResponse
Bases: BaseModel
Decoded data from the Safe Transaction Service.
Source code in safe_kit/types.py
235 236 237 238 239 | |
SafeDelegateResponse
Bases: BaseModel
Delegate for a Safe.
Source code in safe_kit/types.py
216 217 218 219 220 221 222 | |
SafeInfoResponse
Bases: BaseModel
Information about a Safe from the Transaction Service.
Source code in safe_kit/types.py
176 177 178 179 180 181 182 183 184 185 186 187 | |
SafeTokenResponse
Bases: BaseModel
Information about a Token.
Source code in safe_kit/types.py
225 226 227 228 229 230 231 232 | |
SafeTransaction
Bases: BaseModel
Model representing a complete Safe transaction including signatures.
Source code in safe_kit/types.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
SafeTransactionData
Bases: BaseModel
Model representing the data of a Safe transaction.
Source code in safe_kit/types.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | |