Bump pallas dependencies to include flat bigint patch

Fixes #796.
This commit is contained in:
KtorZ
2024-01-18 18:12:07 +01:00
parent 9f263c46f8
commit 0e2b8ae251
13 changed files with 787 additions and 720 deletions

View File

@@ -0,0 +1,7 @@
# This file was generated by Aiken
# You typically do not need to edit this file
requirements = []
packages = []
[etags]

View File

@@ -0,0 +1,2 @@
name = "aiken-lang/acceptance_test_090"
version = "0.0.0"

View File

@@ -0,0 +1,39 @@
{
"preamble": {
"title": "aiken-lang/acceptance_test_090",
"version": "0.0.0",
"plutusVersion": "v2",
"compiler": {
"name": "Aiken",
"version": "v1.0.21-alpha+9f263c4"
}
},
"validators": [
{
"title": "foo.spend",
"datum": {
"title": "datum",
"schema": {
"$ref": "#/definitions/Int"
}
},
"redeemer": {
"title": "_redeemer",
"schema": {
"$ref": "#/definitions/Data"
}
},
"compiledCode": "583f010000322223253330053370e00290487777c9cfdde5c8f27bf4c1637fc55b5eeef7d8c4d9e0d4454967ff7d6e7ee6e242eb60c6318a4c26cac6eb400d5cd1",
"hash": "d18aa035514acb988a34d33fc246420c5b0eca4f3f947ce95e294447"
}
],
"definitions": {
"Data": {
"title": "Data",
"description": "Any Plutus data."
},
"Int": {
"dataType": "integer"
}
}
}

View File

@@ -0,0 +1,8 @@
const foo =
45898945895546556456546223123184821312385384845153123213185685815615232323484552
validator {
fn spend(datum: Int, _redeemer: Data, _context: Data) {
datum == foo
}
}