Algorand TypeScript
Algorand TypeScript
Section titled “Algorand TypeScript”Write Algorand smart contracts using native TypeScript syntax.
Quick Example
Section titled “Quick Example”import { Contract } from '@algorandfoundation/algorand-typescript';
class HelloWorld extends Contract { hello(name: string): string { return `Hello, ${name}`; }}