Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/algorand/avm-abi
ARC-4 ABI Reference Implementation
https://github.com/algorand/avm-abi
abi algorand avm blockchain encoding go golang smart-contracts types
Last synced: 2 months ago
JSON representation
ARC-4 ABI Reference Implementation
- Host: GitHub
- URL: https://github.com/algorand/avm-abi
- Owner: algorand
- License: mit
- Created: 2022-08-05T15:53:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T16:06:19.000Z (8 months ago)
- Last Synced: 2024-06-18T21:43:01.153Z (7 months ago)
- Topics: abi, algorand, avm, blockchain, encoding, go, golang, smart-contracts, types
- Language: Go
- Homepage: https://pkg.go.dev/github.com/algorand/avm-abi
- Size: 28.3 KB
- Stars: 6
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# avm-abi
[![Go Reference](https://pkg.go.dev/badge/github.com/algorand/avm-abi.svg)](https://pkg.go.dev/github.com/algorand/avm-abi)
[![codecov](https://codecov.io/gh/algorand/avm-abi/branch/main/graph/badge.svg?token=SCDOA6NAIZ)](https://codecov.io/gh/algorand/avm-abi)An implementation of the Algorand [ARC-4](https://arc.algorand.foundation/ARCs/arc-0004) ABI type system.
> The scope of this module is intentionally minimal. If you wish to use a more
> comprehensive library, consider [Algorand's Go SDK](https://github.com/algorand/go-algorand-sdk),
> which uses this module internally.## Installation
This module can be installed using the `go get` command.
```sh
go get github.com/algorand/avm-abi/abi
```