tempo_contracts/precompiles/
path_usd.rs

1use alloy::sol;
2
3sol! {
4    #[derive(Debug, PartialEq, Eq)]
5    #[sol(rpc, abi)]
6    interface IPathUSD {
7        function TRANSFER_ROLE() external view returns (bytes32);
8        function RECEIVE_WITH_MEMO_ROLE() external view returns (bytes32);
9    }
10}