File tree 3 files changed +16
-0
lines changed
3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 1
1
# CDP Python SDK Changelog
2
2
3
+ ## Unreleased
4
+
5
+ ### Added
6
+
7
+ - ` ExternalAddress ` derived ` Address ` class.
8
+
9
+
3
10
## [ 0.13.0] - 2024-12-19
4
11
5
12
### Added
13
+
6
14
- Add support for fetching address reputation
7
15
- Add ` reputation ` method to ` Address ` to fetch the reputation of the address.
8
16
- Add support for registering, updating, and listing smart contracts that are
@@ -12,6 +20,7 @@ deployed external to CDP.
12
20
- Add ability to import WalletData files exported by the NodeJS CDP SDK
13
21
14
22
### Deprecated
23
+
15
24
- Deprecate ` Wallet.load_seed ` method in favor of ` Wallet.load_seed_from_file `
16
25
- Deprecate ` Wallet.save_seed ` method in favor of ` Wallet.save_seed_to_file `
17
26
Original file line number Diff line number Diff line change 5
5
from cdp .balance_map import BalanceMap
6
6
from cdp .cdp import Cdp
7
7
from cdp .contract_invocation import ContractInvocation
8
+ from cdp .external_address import ExternalAddress
8
9
from cdp .faucet_transaction import FaucetTransaction
9
10
from cdp .hash_utils import hash_message , hash_typed_data_message
10
11
from cdp .mnemonic_seed_phrase import MnemonicSeedPhrase
26
27
"BalanceMap" ,
27
28
"Cdp" ,
28
29
"ContractInvocation" ,
30
+ "ExternalAddress" ,
29
31
"FaucetTransaction" ,
30
32
"MnemonicSeedPhrase" ,
31
33
"PayloadSignature" ,
Original file line number Diff line number Diff line change
1
+ from cdp .address import Address
2
+
3
+
4
+ class ExternalAddress (Address ):
5
+ """A class representing an external address."""
You can’t perform that action at this time.
0 commit comments