File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -137,6 +137,8 @@ def update_user(
137137 user_data = {},
138138 email = None ,
139139 username = None ,
140+ is_sharing_username = None ,
141+ is_sharing_address = None ,
140142 ):
141143 '''
142144 Update user information
@@ -150,6 +152,12 @@ def update_user(
150152 :param username: optional
151153 :type username: str
152154
155+ :param is_sharing_username: optional
156+ :type is_sharing_username: str
157+
158+ :param is_sharing_address: optional
159+ :type is_sharing_address: str
160+
153161 :returns: User
154162
155163 :raises: DydxAPIError
@@ -159,6 +167,8 @@ def update_user(
159167 {
160168 'email' : email ,
161169 'username' : username ,
170+ 'isSharingUsername' : is_sharing_username ,
171+ 'isSharingAddress' : is_sharing_address ,
162172 'userData' : json_stringify (user_data ),
163173 },
164174 )
Original file line number Diff line number Diff line change 1919
2020setup (
2121 name = 'dydx-v3-python' ,
22- version = '1.1 .0' ,
22+ version = '1.2 .0' ,
2323 packages = find_packages (),
2424 package_data = {
2525 'dydx3' : [
You can’t perform that action at this time.
0 commit comments