https://github.com/zaryab2000/cryptobot_buidl_labs
https://github.com/zaryab2000/cryptobot_buidl_labs
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/zaryab2000/cryptobot_buidl_labs
- Owner: zaryab2000
- License: apache-2.0
- Created: 2020-08-29T13:28:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-30T13:47:42.000Z (almost 6 years ago)
- Last Synced: 2025-01-31T21:11:32.436Z (over 1 year ago)
- Language: JavaScript
- Size: 2.52 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CryptoBOT Interaction
###### BUIDL Labs Project
### CryptoBOT Interface

### Tezos SmartPY deployment on Carthagenet
##### Contract Address : KT1DsT31zAR27hVx2T4oWRFhipXnuuSDPiDM
##### Check out the contract at : https://carthagenet.tzstats.com/KT1DsT31zAR27hVx2T4oWRFhipXnuuSDPiDM

---------------
### Entry Points in Contract:
```Params : { name: undefined, type: 'string' }
Name : change_name
Structure : (Left (Left $PARAM))
Sample Invocation : (Left (Left "Tacos"))
Params : { name: undefined, type: 'int' }
Name : move_horizontally
Structure : (Left (Right $PARAM))
Sample Invocation : (Left (Right -1))
Params : { name: undefined, type: 'nat' }
Name : move_vertically
Structure : (Right (Left $PARAM))
Sample Invocation : (Right (Left 99))
Params : { name: undefined, type: 'string' }
Name : shoot_alien
Structure : (Right (Right $PARAM))
Sample Invocation : (Right (Right "Tacos"))
```