Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identity Precompile available on Moonbeam and Moonriver #835

Merged
merged 3 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions builders/build/canonical-contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ There are a set of precompiled contracts included on Moonbeam, Moonriver, and Mo
| [Precompile Registry](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/precompile-registry/PrecompileRegistry.sol){target=_blank} | {{networks.moonbeam.precompiles.registry}} |
| [GMP](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/gmp/Gmp.sol){target=_blank} | {{networks.moonbeam.precompiles.gmp}} |
| [XCM Transactor V3](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/xcm-transactor/src/v3/XcmTransactorV3.sol){target=_blank} | {{networks.moonbeam.precompiles.xcm_transactor_v3}} |
| [Identity](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/identity/Identity.sol){target=_blank} | {{networks.moonbeam.precompiles.identity}} |

=== "Moonriver"
| Contract | Address |
Expand Down Expand Up @@ -113,6 +114,7 @@ There are a set of precompiled contracts included on Moonbeam, Moonriver, and Mo
| [Precompile Registry](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/precompile-registry/PrecompileRegistry.sol){target=_blank} | {{networks.moonriver.precompiles.registry}} |
| [GMP](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/gmp/Gmp.sol){target=_blank} | {{networks.moonriver.precompiles.gmp}} |
| [XCM Transactor V3](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/xcm-transactor/src/v3/XcmTransactorV3.sol){target=_blank} | {{networks.moonriver.precompiles.xcm_transactor_v3}} |
| [Identity](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/identity/Identity.sol){target=_blank} | {{networks.moonriver.precompiles.identity}} |

=== "Moonbase Alpha"
| Contract | Address |
Expand Down
7 changes: 3 additions & 4 deletions builders/pallets-precompiles/precompiles/identity.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ The Identity Precompile is a Solidity interface that allows you to create, manag

The Identity Precompile interacts directly with Substrate's [Identity Pallet](/builders/pallets-precompiles/pallets/identity){target=_blank} to provide the functionality needed to create and manage identities. This pallet is coded in Rust and is normally not accessible from the Ethereum side of Moonbeam. However, the Identity Precompile allows you to access this functionality directly from the Solidity interface.

The Identity Precompile is only available on Moonbase Alpha and is located at the following address:
The Identity Precompile is located at the following address:

<!--
=== "Moonbeam"

```text
Expand All @@ -24,12 +23,12 @@ The Identity Precompile is only available on Moonbase Alpha and is located at th

```text
{{networks.moonriver.precompiles.identity }}
``` -->
```

=== "Moonbase Alpha"

```text
{{networks.moonriver.precompiles.identity }}
{{networks.moonbase.precompiles.identity }}
```

--8<-- 'text/builders/build/pallets-precompiles/precompiles/security.md'
Expand Down
2 changes: 2 additions & 0 deletions builders/pallets-precompiles/precompiles/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ The precompiled contracts are categorized by address and based on the origin net
| [Precompile Registry](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/precompile-registry/PrecompileRegistry.sol){target=_blank} | {{networks.moonbeam.precompiles.registry}} |
| [GMP](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/gmp/Gmp.sol){target=_blank} | {{networks.moonbeam.precompiles.gmp}} |
| [XCM Transactor V3](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/xcm-transactor/src/v3/XcmTransactorV3.sol){target=_blank} | {{networks.moonbeam.precompiles.xcm_transactor_v3}} |
| [Identity](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/identity/Identity.sol){target=_blank} | {{networks.moonbeam.precompiles.identity}} |

=== "Moonriver"
| Contract | Address |
Expand Down Expand Up @@ -88,6 +89,7 @@ The precompiled contracts are categorized by address and based on the origin net
| [Precompile Registry](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/precompile-registry/PrecompileRegistry.sol){target=_blank} | {{networks.moonriver.precompiles.registry}} |
| [GMP](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/gmp/Gmp.sol){target=_blank} | {{networks.moonriver.precompiles.gmp}} |
| [XCM Transactor V3](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/xcm-transactor/src/v3/XcmTransactorV3.sol){target=_blank} | {{networks.moonriver.precompiles.xcm_transactor_v3}} |
| [Identity](https://github.com/moonbeam-foundation/moonbeam/blob/master/precompiles/identity/Identity.sol){target=_blank} | {{networks.moonriver.precompiles.identity}} |

=== "Moonbase Alpha"
| Contract | Address |
Expand Down
Loading