Skip to content

Commit

Permalink
fix: updated abi file
Browse files Browse the repository at this point in the history
  • Loading branch information
bucurdavid committed Nov 15, 2023
1 parent 53032ed commit e5d9135
Showing 1 changed file with 95 additions and 40 deletions.
135 changes: 95 additions & 40 deletions src/abis/data-nft-lease.abi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@
"buildInfo": {
"rustc": {
"version": "1.71.0-nightly",
"commitHash": "7f94b314cead7059a71a265a8b64905ef2511796",
"commitDate": "2023-04-23",
"commitHash": "a2b1646c597329d0a25efa3889b66650f65de1de",
"commitDate": "2023-05-25",
"channel": "Nightly",
"short": "rustc 1.71.0-nightly (7f94b314c 2023-04-23)"
"short": "rustc 1.71.0-nightly (a2b1646c5 2023-05-25)"
},
"contractCrate": {
"name": "data-nft-lease",
"version": "1.0.0"
},
"framework": {
"name": "multiversx-sc",
"version": "0.43.2"
"version": "0.43.5"
}
},
"name": "DataNftMint",
"constructor": {
"inputs": [
{
"name": "administrator",
"type": "optional<Address>",
"name": "setup_values",
"type": "optional<multi<Address,Address>>",
"multi_arg": true
}
],
Expand Down Expand Up @@ -196,7 +196,7 @@
"outputs": []
},
{
"name": "setAntiSpamTax",
"name": "setMintTaxFee",
"mutability": "mutable",
"inputs": [
{
Expand Down Expand Up @@ -294,26 +294,6 @@
],
"outputs": []
},
{
"name": "setTax",
"onlyOwner": true,
"mutability": "mutable",
"inputs": [
{
"name": "itheum_address",
"type": "Address"
},
{
"name": "tax",
"type": "BigUint"
}
],
"outputs": [
{
"type": "BigUint"
}
]
},
{
"name": "setClaimsAddress",
"mutability": "mutable",
Expand Down Expand Up @@ -375,6 +355,16 @@
}
]
},
{
"name": "getTaxTokens",
"mutability": "readonly",
"inputs": [],
"outputs": [
{
"type": "EgldOrEsdtTokenIdentifier"
}
]
},
{
"name": "getTaxIsRequired",
"mutability": "readonly",
Expand Down Expand Up @@ -561,17 +551,7 @@
]
},
{
"name": "getItheumTax",
"mutability": "readonly",
"inputs": [],
"outputs": [
{
"type": "BigUint"
}
]
},
{
"name": "getItheumTaxAddress",
"name": "getRoyaltiesAddress",
"mutability": "readonly",
"inputs": [],
"outputs": [
Expand All @@ -581,7 +561,7 @@
]
},
{
"name": "getClaimsAddress",
"name": "getFactoryAddress",
"mutability": "readonly",
"inputs": [],
"outputs": [
Expand Down Expand Up @@ -697,6 +677,67 @@
}
],
"outputs": []
},
{
"name": "check_claims",
"mutability": "mutable",
"inputs": [
{
"name": "address_to_check",
"type": "Address"
}
],
"outputs": [
{
"type": "BigUint"
}
]
},
{
"name": "get_claims",
"mutability": "mutable",
"inputs": [],
"outputs": []
},
{
"name": "factory_treasury_address",
"mutability": "mutable",
"inputs": [],
"outputs": [
{
"type": "Address"
}
]
},
{
"name": "factory_tax",
"mutability": "mutable",
"inputs": [],
"outputs": [
{
"type": "BigUint"
}
]
},
{
"name": "factory_claims_contract_address",
"mutability": "mutable",
"inputs": [],
"outputs": [
{
"type": "Address"
}
]
},
{
"name": "factory_claims_token_identifier",
"mutability": "mutable",
"inputs": [],
"outputs": [
{
"type": "TokenIdentifier"
}
]
}
],
"events": [
Expand Down Expand Up @@ -816,7 +857,7 @@
]
},
{
"identifier": "antiSpamTaxSet",
"identifier": "mintTaxFee",
"inputs": [
{
"name": "token",
Expand Down Expand Up @@ -860,6 +901,16 @@
}
]
},
{
"identifier": "setFactoryAddress",
"inputs": [
{
"name": "factory_address",
"type": "Address",
"indexed": true
}
]
},
{
"identifier": "pauseCollection",
"inputs": [
Expand Down Expand Up @@ -1039,6 +1090,10 @@
{
"name": "administrator_address",
"type": "Address"
},
{
"name": "tax_token",
"type": "EgldOrEsdtTokenIdentifier"
}
]
},
Expand Down

0 comments on commit e5d9135

Please sign in to comment.