Skip to content

Commit

Permalink
chore(release): 0.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mguleryuz committed Jan 31, 2025
1 parent 24e2b21 commit 4115dce
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.3.11](https://github.com/inverter-network/abis/compare/v0.3.10...v0.3.11) (2025-01-31)

### [0.3.10](https://github.com/inverter-network/abis/compare/v0.3.9...v0.3.10) (2025-01-31)

### [0.3.9](https://github.com/inverter-network/abis/compare/v0.3.8...v0.3.9) (2025-01-30)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@inverter-network/abis",
"description": "INVERTER typescript ABIs",
"version": "0.3.10",
"version": "0.3.11",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down
34 changes: 32 additions & 2 deletions src/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9760,7 +9760,22 @@ export const data = [
description:
'A payment processor implementation that extends the base queue system with manual execution capabilities. This allows for controlled, manual processing of payment orders in the queue.',
moduleType: 'paymentProcessor',
deploymentInputs: { configData: [] },
deploymentInputs: {
configData: [
{
name: 'canceledOrdersTreasury',
type: 'address',
description:
'The address of the treasury that will receive the canceled orders',
},
{
name: 'failedOrdersTreasury',
type: 'address',
description:
'The address of the treasury that will receive the failed orders',
},
],
},
abi: [
{
inputs: [{ internalType: 'address', name: 'target', type: 'address' }],
Expand Down Expand Up @@ -13167,7 +13182,22 @@ export const data = [
description:
'A payment processor implementation that manages payment orders through a FIFO queue system. It supports automated execution of payments within the processPayments function.',
moduleType: 'paymentProcessor',
deploymentInputs: { configData: [] },
deploymentInputs: {
configData: [
{
name: 'canceledOrdersTreasury',
type: 'address',
description:
'The address of the treasury that will receive the canceled orders',
},
{
name: 'failedOrdersTreasury',
type: 'address',
description:
'The address of the treasury that will receive the failed orders',
},
],
},
abi: [
{
inputs: [{ internalType: 'address', name: 'target', type: 'address' }],
Expand Down

0 comments on commit 4115dce

Please sign in to comment.