@@ -28,17 +28,17 @@ forge install tempoxyz/tempo-std
2828<pre >
2929src
3030├── interfaces
31- │ ├── <a href =" ./src/interfaces/IAccountKeychain.sol " >IAccountKeychain.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/transactions/spec-tempo-transaction#keychain-precompile " >Account Keychain </a >
32- │ ├── <a href =" ./src/interfaces/IFeeAMM.sol " >IFeeAMM.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/fees/fee-amm " >Fee AMM </a >
33- │ ├── <a href =" ./src/interfaces/IFeeManager.sol " >IFeeManager.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/fees/spec-fee-amm#2-feemanager-contract " >Fee AMM Management </a >
34- │ ├── <a href =" ./src/interfaces/INonce.sol " >INonce.sol</a >: 2D Nonce Management for Tempo Transactions
35- │ ├── <a href =" ./src/interfaces/IStablecoinExchange.sol " >IStablecoinExchange.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/exchange/spec#stablecoin-exchange " >Stablecoin Exchange </a >
36- │ ├── <a href =" ./src/interfaces/ITIP20Factory.sol " >ITIP20Factory.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/tip20/spec#tip20factory " >TIP-20: Factory Contract </a >
37- │ ├── <a href =" ./src/interfaces/ITIP20RewardsRegistry.sol " >ITIP20RewardsRegistry.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/tip20-rewards/spec " >TIP-20: Reward Distribution </a >
38- │ ├── <a href =" ./src/interfaces/ITIP20RolesAuth.sol " >ITIP20RolesAuth.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/tip20/spec#role-based-access-control " >TIP-20: Roles & Permissions </a >
39- │ ├── <a href =" ./src/interfaces/ITIP20.sol " >ITIP20.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/tip20/overview " >TIP-20: Core Token Standard </a >
40- │ └── <a href =" ./src/interfaces/ITIP403Registry.sol " >ITIP403Registry.sol</a >: <a href =" https://docs.tempo.xyz/documentation/protocol/tip403/overview " >TIP-403: Policy Registry System </a >
41- │ └── <a href =" ./src/interfaces/IValidatorConfig.sol " >IValidatorConfig.sol</a >: Manage consensus validators
31+ │ ├── <a href =" ./src/interfaces/IAccountKeychain.sol " >IAccountKeychain.sol</a >: Account Keychain | <a href =" https://docs.tempo.xyz/documentation/protocol/transactions/spec-tempo-transaction#keychain-precompile " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/account_keychain/mod.rs " >Implementation </a >
32+ │ ├── <a href =" ./src/interfaces/IFeeAMM.sol " >IFeeAMM.sol</a >: Fee AMM | <a href =" https://docs.tempo.xyz/documentation/protocol/fees/fee-amm " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/tip_fee_manager/amm.rs " >Implementation </a >
33+ │ ├── <a href =" ./src/interfaces/IFeeManager.sol " >IFeeManager.sol</a >: Fee AMM Management | <a href =" https://docs.tempo.xyz/documentation/protocol/fees/spec-fee-amm#2-feemanager-contract " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/tip_fee_manager/mod.rs " >Implementation </a >
34+ │ ├── <a href =" ./src/interfaces/INonce.sol " >INonce.sol</a >: 2D Nonce Management for Tempo Transactions | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/nonce/mod.rs " >Implementation</ a >
35+ │ ├── <a href =" ./src/interfaces/IStablecoinExchange.sol " >IStablecoinExchange.sol</a >: Stablecoin Exchange | <a href =" https://docs.tempo.xyz/documentation/protocol/exchange/spec#stablecoin-exchange " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/stablecoin_exchange/mod.rs " >Implementation </a >
36+ │ ├── <a href =" ./src/interfaces/ITIP20Factory.sol " >ITIP20Factory.sol</a >: TIP-20: Factory Contract | <a href =" https://docs.tempo.xyz/documentation/protocol/tip20/spec#tip20factory " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/tip20_factory/mod.rs " >Implementation </a >
37+ │ ├── <a href =" ./src/interfaces/ITIP20RewardsRegistry.sol " >ITIP20RewardsRegistry.sol</a >: TIP-20: Reward Distribution | <a href =" https://docs.tempo.xyz/documentation/protocol/tip20-rewards/spec " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/tip20_rewards_registry/mod.rs " >Implementation </a >
38+ │ ├── <a href =" ./src/interfaces/ITIP20RolesAuth.sol " >ITIP20RolesAuth.sol</a >: TIP-20: Roles & Permissions | <a href =" https://docs.tempo.xyz/documentation/protocol/tip20/spec#role-based-access-control " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/tip20/roles.rs " >Implementation </a >
39+ │ ├── <a href =" ./src/interfaces/ITIP20.sol " >ITIP20.sol</a >: TIP-20: Core Token Standard | <a href =" https://docs.tempo.xyz/documentation/protocol/tip20/overview " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/tip20/mod.rs " >Implementation </a >
40+ │ └── <a href =" ./src/interfaces/ITIP403Registry.sol " >ITIP403Registry.sol</a >: TIP-403: Policy Registry System | <a href =" https://docs.tempo.xyz/documentation/protocol/tip403/overview " >Docs</ a > | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/tip403_registry/mod.rs " >Implementation </a >
41+ │ └── <a href =" ./src/interfaces/IValidatorConfig.sol " >IValidatorConfig.sol</a >: Manage consensus validators | < a href = " https://github.com/tempoxyz/tempo/blob/main/crates/precompiles/src/validator_config/mod.rs " >Implementation</ a >
4242└── <a href =" ./src/StdPrecompiles.sol " >StdPrecompiles.sol</a >: Collection of precompiles and their interfaces on Tempo
4343</pre >
4444
0 commit comments