@@ -60,22 +60,6 @@ function addExtension(IExtension.Extension _extension) external nonpayable
6060| ---| ---| ---|
6161| _ extension | IExtension.Extension | undefined |
6262
63- ### addSigner
64-
65- ``` solidity
66- function addSigner(address _signer) external nonpayable
67- ```
68-
69- Callback function for an Account to register its signers.
70-
71-
72-
73- #### Parameters
74-
75- | Name | Type | Description |
76- | ---| ---| ---|
77- | _ signer | address | undefined |
78-
7963### createAccount
8064
8165``` solidity
@@ -461,26 +445,26 @@ Receives and executes a batch of function calls on this contract.
461445| ---| ---| ---|
462446| results | bytes[ ] | The bytes data that makes up the result of the batch of function calls executed. |
463447
464- ### removeExtension
448+ ### onSignerAdded
465449
466450``` solidity
467- function removeExtension(string _extensionName ) external nonpayable
451+ function onSignerAdded(address _signer ) external nonpayable
468452```
469453
454+ Callback function for an Account to register its signers.
470455
471456
472- * Removes an existing extension from the router.*
473457
474458#### Parameters
475459
476460| Name | Type | Description |
477461| ---| ---| ---|
478- | _ extensionName | string | undefined |
462+ | _ signer | address | undefined |
479463
480- ### removeSigner
464+ ### onSignerRemoved
481465
482466``` solidity
483- function removeSigner (address _signer) external nonpayable
467+ function onSignerRemoved (address _signer) external nonpayable
484468```
485469
486470Callback function for an Account to un-register its signers.
@@ -493,6 +477,22 @@ Callback function for an Account to un-register its signers.
493477| ---| ---| ---|
494478| _ signer | address | undefined |
495479
480+ ### removeExtension
481+
482+ ``` solidity
483+ function removeExtension(string _extensionName) external nonpayable
484+ ```
485+
486+
487+
488+ * Removes an existing extension from the router.*
489+
490+ #### Parameters
491+
492+ | Name | Type | Description |
493+ | ---| ---| ---|
494+ | _ extensionName | string | undefined |
495+
496496### renounceRole
497497
498498``` solidity
0 commit comments