diff --git a/src/Blockchain/abis/proxyClaimAbiL2.json b/src/Blockchain/abis/proxyClaimAbiL2.json index b9800a9..95dc5a6 100644 --- a/src/Blockchain/abis/proxyClaimAbiL2.json +++ b/src/Blockchain/abis/proxyClaimAbiL2.json @@ -327,6 +327,34 @@ ], "outputs": [], "state_mutability": "external" + }, + { + "name": "transfer_tickets", + "type": "function", + "inputs": [ + { + "name": "beneficiaries", + "type": "core::array::Array::" + }, + { + "name": "ticket_type", + "type": "core::integer::u8" + } + ], + "outputs": [], + "state_mutability": "external" + }, + { + "name": "claim_tokens", + "type": "function", + "inputs": [ + { + "name": "receipient", + "type": "core::starknet::contract_address::ContractAddress" + } + ], + "outputs": [], + "state_mutability": "external" } ] }, diff --git a/src/Blockchain/abis/proxyClaimAbil1.json b/src/Blockchain/abis/proxyClaimAbil1.json index eb604f1..453d6ee 100644 --- a/src/Blockchain/abis/proxyClaimAbil1.json +++ b/src/Blockchain/abis/proxyClaimAbil1.json @@ -66,11 +66,6 @@ "name": "InvalidVestingPeriod", "type": "error" }, - { - "inputs": [], - "name": "NoPendingClaim", - "type": "error" - }, { "inputs": [], "name": "NotInitializing", @@ -108,6 +103,11 @@ "name": "ReentrancyGuardReentrantCall", "type": "error" }, + { + "inputs": [], + "name": "TicketRevoked", + "type": "error" + }, { "inputs": [], "name": "TransferFailed", @@ -440,6 +440,19 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [ + { + "internalType": "address", + "name": "_recipient", + "type": "address" + } + ], + "name": "claimTokens", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, { "inputs": [ { @@ -586,6 +599,19 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_id", + "type": "uint256" + } + ], + "name": "revoke", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, { "inputs": [], "name": "token", @@ -724,6 +750,11 @@ "name": "beneficiary", "type": "address" }, + { + "internalType": "bool", + "name": "isRevoked", + "type": "bool" + }, { "internalType": "enum Claimable.TicketType", "name": "ticketType",