Questions tagged [pyteal]

7 questions
1
vote
1 answer

How to create a child app with parameters in Algorand?

I want to create a child app as described here, but make it to accept parameters on creation: from pyteal import * from beaker import Application, ApplicationStateValue, decorators class ChildApp(Application): foo =…
jeron-diovis
  • 788
  • 1
  • 8
  • 19
1
vote
1 answer

(Algorand) Single atomic transactions - is there a fee for each signed transaction?

when grouping and sending a bunch of transactions as a single atomic transaction. Is there a fee for each signed transaction? Or 1 fee for sending them all? ie if i am making 10 payments from my acct to 10 different recipients, do I pay 10 * my…
1
vote
2 answers

How to generate ABI for an algorand smart contract written in pyteal?

I'm coming from Ethereum smart contract development background using solidity to Algorand smart contract development using pyteal. I couldn't found any guide or resource on how to generate ABI for an Algorand smart contract because in solidity the…
1
vote
1 answer

Algorand: What is store integer count 7 exceeds schema integer count 6?

I couldn't understand what is the following error in Algorand. I couldn't find a document for this either. AlgodHTTPError: TransactionPool.Remember: transaction AFARFFGAZE7IXA2ZVPGCNTJVTUHX2IZKVSKY7US24JANRK7LZRXA: logic eval error: store integer…
Marckaraujo
  • 7,422
  • 11
  • 59
  • 97
0
votes
0 answers

Is it possible to made app using Python library PyTeal?

Hi I am newbie with programming and I just want to know is it possible to build an application using Python library PyTeal, and if it is how I can make it I am really sorry, this isn't a problem to solve I just need little help with my school…
Uki
  • 1
0
votes
1 answer

How to ensure accounts aren't bots (Algorand)?

not sure if this question belongs here... We are doing a giveaway but we have >30K wallets signed up. We're worried that many are bots. Have you encountered this yet? AND/OR does anyone have a solution to check each wallet transaction history to see…
cyclops
  • 118
  • 5
0
votes
1 answer

Accessing local state using PyTEAL

I'm having some trouble accessing the local state using PyTeal. I'm trying to store a value in the local state of an account that has opted-in to the smart contract this way: App.localPut(Int(0),Bytes("owner"), account_1) , where account_1 is…