Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions cardano/onchain/aiken.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,21 @@ name = "aiken-lang/stdlib"
version = "2.1.0"
source = "github"

[[requirements]]
name = "aiken-lang/fuzz"
version = "2.2.0"
source = "github"

[[packages]]
name = "aiken-lang/stdlib"
version = "2.1.0"
requirements = []
source = "github"

[[packages]]
name = "aiken-lang/fuzz"
version = "2.2.0"
requirements = []
source = "github"

[etags]
23 changes: 17 additions & 6 deletions cardano/onchain/aiken.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
# Project's name, as {organisation}/{project}
name = "cardanofoundation/cardano-ibc"

# Project's version, we recommend semantic versioning for libraries
version = "0.2.0"

# One or more license(s); we recommend Apache-2.0 or MPL-2.0 for open source
# projects.
licences = ["Apache-2.0"]


# Compiler and ledger target.
compiler = "v1.1.21"
plutus = "v3"

# An informative albeit short description of the project.
description = "The project involves implementing the Inter-Blockchain Communication (IBC) protocol on the Cardano main chain using Aiken."

# Optional section, gives additional structured information on a project to
# show in generated documentation.
[repository]
platform = "gitlab" # Platform type, `github`, `gitlab` or `bitbucket`
user = "aiken-lang" # Username or organisation on that platform
project = "cardano-ibc" # Repository or project on that platform

# A list of dependencies
#
# Leave as:
Expand All @@ -30,4 +34,11 @@ project = "cardano-ibc" # Repository or project on that platform
[[dependencies]]
name = "aiken-lang/stdlib" # Project's name
version = "2.1.0" # Version, as a branch or git commit hash
source = "github" # Platform type, `github`, `gitlab` or `bitbucket`
source = "github" # Platform type, `github`, `gitlab` or `bitbucket`

[[dependencies]]
name = "aiken-lang/fuzz" # Property-based testing helpers
version = "2.2.0"
source = "github"

[config]
Loading