@openzeppelin/contracts-ui-builder-adapter-stellar
Version:
Stellar Adapter for Contracts UI Builder
10 lines (8 loc) • 343 B
text/typescript
import type { ContractFunction } from '@openzeppelin/contracts-ui-builder-types';
/**
* Determines if a function is a view/pure function (read-only)
*/
export function isStellarViewFunction(_functionDetails: ContractFunction): boolean {
// TODO: Implement properly for Stellar Soroban contracts
return false; // Temporary placeholder
}