Comment provoquer un contrat intelligent avec Taquito
1 réponses
- votes
Lorsque vousinjectionneztouttype d'opération à l'aide de Taquito,vous obtiendrez un objet d'exploitation quipeut vouspermettre d'interagir avec le résultat de votre opération.
Dans le cas de l'origination,vouspourrezinteragir avec votre contratnouvellement déployé:
const op = Tezos.contract.originate({...contractOptions})
const contract = await op.contract()
Cela attendra que votre contrat soit originaireet vous donnera l'objet d'abstraction de contrat Taquito Smart Smart.
When you inject any kind of operation using taquito you will get an Operation object back which can allow you to interact with the result of your operation.
In the case of Origination you will be able to interact with your newly deployed contract doing:
const op = Tezos.contract.originate({...contractOptions})
const contract = await op.contract()
This will wait for your contract to be originated and will give you the taquito smart contract abstraction object.
Commentpuis-je accéder àmon contrat après l'origine de Taquito?Sij'utilise Taquito comme ça.
tezos.contract.origuez ({... ContractoptionS})
Commentpuis-je accéder àmanouvelle adresse originéeet commencer à utilisermonnouveau contrat?