( blockchain: string, standard: string, )
| 97 | }; |
| 98 | |
| 99 | export const isCaseInsensitiveBlockchainAddress = ( |
| 100 | blockchain: string, |
| 101 | standard: string, |
| 102 | ): boolean => { |
| 103 | return blockchain === BlockchainType.InternetComputer && standard === BlockchainStandard.Native; |
| 104 | }; |
| 105 | |
| 106 | export const maybeTransformBlockchainAddress = ( |
| 107 | blockchain: string, |
no outgoing calls
no test coverage detected