Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ42 authored Nov 6, 2023
1 parent ff86731 commit 97f810b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/contracts/contracts/LSP6KeyManager/LSP6KeyManager.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Same as [`execute`](#execute) but execute a batch of payloads (abi-encoded funct

:::tip Hint

If you are looking to learn how to sign and execute relay transactions via the Key Manager, see our Javascript step by step guide [_"Execute Relay Transactions"_](../../../learn/expert-guides/key-manager/execute-relay-transactions.md). See the LSP6 Standard page for more details on how to [generate a valid signature for Execute Relay Call](../../../standards/universal-profile/lsp6-key-manager.md#how-to-sign-relay-transactions).
If you are looking to learn how to sign and execute relay transactions via the Key Manager, see our Javascript step by step guide [_"Execute Relay Transactions"_](../../../guides/key-manager/execute-relay-transactions.md). See the LSP6 Standard page for more details on how to [generate a valid signature for Execute Relay Call](../../../standards/universal-profile/lsp6-key-manager.md#how-to-sign-relay-transactions).

:::

Expand Down Expand Up @@ -906,7 +906,7 @@ function _verifyAllowedCall(
function _extractCallType(
uint256 operationType,
uint256 value,
bool isEmptyCall
bytes data
) internal pure returns (bytes4 requiredCallTypes);
```

Expand All @@ -918,7 +918,7 @@ extract the bytes4 representation of a single bit for the type of call according
| --------------- | :-------: | -------------------------------------------- |
| `operationType` | `uint256` | 0 = CALL, 3 = STATICCALL or 3 = DELEGATECALL |
| `value` | `uint256` | - |
| `isEmptyCall` | `bool` | - |
| `data` | `bytes` | - |

#### Returns

Expand Down Expand Up @@ -955,7 +955,7 @@ function _isAllowedStandard(
```solidity
function _isAllowedFunction(
bytes allowedCall,
bytes4 requiredFunction
bytes data
) internal pure returns (bool);
```

Expand Down
4 changes: 2 additions & 2 deletions docs/contracts/libraries/LSP1Utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Any method labeled as `internal` serves as utility function within the contract.

Internal functions cannot be called externally, whether from other smart contracts, dApp interfaces, or backend services. Their restricted accessibility ensures that they remain exclusively available within the context of the current contract, promoting controlled and encapsulated usage of these internal utilities.

### tryNotifyUniversalReceiver
### notifyUniversalReceiver

```solidity
function tryNotifyUniversalReceiver(
function notifyUniversalReceiver(
address lsp1Implementation,
bytes32 typeId,
bytes data
Expand Down

0 comments on commit 97f810b

Please sign in to comment.