Análisis de Contratos InteligentesCrea un workflow agentic para Q&A sobre contratos: 1. Bloque input: Pregunta del usuario (usa un prompt block o variable). 2. Bloque GenAI: Analiza la pregunta y busca en archivos subidos. 3. Bloque Python (si aplica): Ejecuta extracción (ej. fechas con regex, cláusulas con LLM). 4. Bloque output: Respuesta formateada con citas + tabla si hay datos estructurados. Conecta todo, agrega un loop para múltiples preguntas. Planifica primero: dame milestones y luego procede si apruebo.
About
Whitelisted Wallet - wallet that by default could send value only to specific address and master key that can send value anywhere.
Install
yarn add ton-contracts
Usage
const client = new TonClient({ endpoint: 'https://testnet.toncenter.com/api/v2/jsonRPC' });
const wallet = await client.openWalletFromCustomContract(WhitelistedWalletSource.create({
masterKey: masterKey.publicKey,
restrictedKey: restrictedKey.publicKey,
whitelistedAddress: whitelistedWallet.wallet.address,
workchain: 0
}));
// Use wallet as normal wallet
License



