File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
content/stellar-contracts/accounts Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ sequenceDiagram
1010 participant User
1111 participant SmartAccount
1212 participant ContextRule
13- participant DelegateSigner
13+ participant DelegatedSigner
1414 participant Verifier
1515 participant Policy
1616
@@ -19,12 +19,14 @@ sequenceDiagram
1919 ContextRule->>ContextRule: Filter expired rules<br/>Sort newest first
2020
2121 loop Each rule until match
22- Note over ContextRule,DelegateSigner: Built-in authorization <br/>for delegate signers
23- ContextRule->>DelegateSigner: require_auth_for_args()
24- DelegateSigner-->>ContextRule: Authorized
22+ Note over ContextRule,DelegatedSigner: Built-in authorization <br/>for delegated signers
23+ ContextRule->>DelegatedSigner: require_auth_for_args()
24+ DelegatedSigner-->>ContextRule: Authorized
25+
2526 Note over ContextRule,Verifier: Signature verification for external signers
2627 ContextRule->>Verifier: verify()
2728 Verifier-->>ContextRule: Valid
29+
2830 Note over ContextRule,Policy: Policy pre-checks
2931 ContextRule->>Policy: can_enforce()
3032 Policy-->>ContextRule: True/False
You can’t perform that action at this time.
0 commit comments