Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 851 Bytes

File metadata and controls

34 lines (21 loc) · 851 Bytes

Complex Cross-Contract Calls

This contract presents 3 examples on how to do complex cross-contract calls. Particularly, it shows:

  1. How to batch method calls to a same contract.
  2. How to call multiple contracts in parallel, each returning a different type.
  3. Different ways of handling the responses in the callback.

Quickstart

Clone this repository locally or open it in gitpod. Then follow these steps:

1. Install Dependencies

npm install

2. Test the Contract

Deploy your contract in a sandbox and simulate interactions from users.

npm test

Learn More

  1. Learn more about the contract through its README.
  2. Check our documentation.