Skip to content

Commit

Permalink
chore(release): 0.3.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mguleryuz committed Feb 19, 2025
1 parent 6bc74ed commit 0fb3677
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 87 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.21](https://github.com/inverter-network/abis/compare/v0.3.20...v0.3.21) (2025-02-19)

### [0.3.20](https://github.com/inverter-network/abis/compare/v0.3.19...v0.3.20) (2025-02-18)

### [0.3.19](https://github.com/inverter-network/abis/compare/v0.3.18...v0.3.19) (2025-02-18)
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.20",
"version": "0.3.21",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down
114 changes: 29 additions & 85 deletions src/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,12 @@ export const data = [
description:
'The address that will receive LP tokens after migration',
},
{
name: 'initialRewardDuration',
type: 'uint256',
jsType: 'numberString',
description: 'The duration of the initial rewards in seconds',
},
],
name: 'migrationConfig',
type: 'tuple',
Expand All @@ -409,10 +415,9 @@ export const data = [
stateMutability: 'nonpayable',
type: 'constructor',
},
{ inputs: [], name: 'PIM_WorkflowFactory__OnlyInitiator', type: 'error' },
{
inputs: [],
name: 'PIM_WorkflowFactory__OnlyPimFeeRecipient',
name: 'PIM_WorkflowFactory__OnlyInitiatorAfterGraduation',
type: 'error',
},
{
Expand Down Expand Up @@ -446,6 +451,13 @@ export const data = [
type: 'uint256',
description: 'The amount of collateral tokens added as liquidity.',
},
{
indexed: false,
internalType: 'uint256',
name: 'stakingRewards',
type: 'uint256',
description: 'The amount of staking rewards added as liquidity.',
},
],
name: 'Graduation',
type: 'event',
Expand Down Expand Up @@ -505,6 +517,11 @@ export const data = [
name: 'lpTokenRecipient',
type: 'address',
},
{
internalType: 'uint256',
name: 'initialRewardDuration',
type: 'uint256',
},
],
indexed: false,
internalType: 'struct IMigrating_PIM_Factory_v1.MigrationConfig',
Expand All @@ -518,73 +535,6 @@ export const data = [
outputs: [],
description: 'Event emitted when a new PIM workflow is created.',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'fundingManager',
type: 'address',
description: 'The address of the funding manager.',
},
{
indexed: true,
internalType: 'address',
name: 'claimer',
type: 'address',
description: 'The address of the one that is claiming.',
},
{
indexed: true,
internalType: 'address',
name: 'to',
type: 'address',
description: 'The address of that is receiving the fee.',
},
{
indexed: false,
internalType: 'uint256',
name: 'amount',
type: 'uint256',
description: 'The amount claimed.',
},
],
name: 'PimFeeClaimed',
type: 'event',
outputs: [],
description: 'Event emitted when PIM fee (buy/sell fees) is claimed.',
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: 'address',
name: 'fundingManager',
type: 'address',
description: 'The address of the funding manager.',
},
{
indexed: true,
internalType: 'address',
name: 'oldRecipient',
type: 'address',
description: 'The previous pim fee recipient.',
},
{
indexed: true,
internalType: 'address',
name: 'newRecipient',
type: 'address',
description: 'The new pim fee recipient.',
},
],
name: 'PimFeeRecipientUpdated',
type: 'event',
outputs: [],
description: 'Event emitted when factory owner sets new fee.',
},
{
inputs: [
{
Expand Down Expand Up @@ -810,6 +760,11 @@ export const data = [
name: 'lpTokenRecipient',
type: 'address',
},
{
internalType: 'uint256',
name: 'initialRewardDuration',
type: 'uint256',
},
],
internalType: 'struct IMigrating_PIM_Factory_v1.MigrationConfig',
name: 'migrationConfig_',
Expand Down Expand Up @@ -970,6 +925,11 @@ export const data = [
name: 'initialVirtualCollateralSupply',
type: 'uint256',
},
{
internalType: 'uint256',
name: 'initialRewardDuration',
type: 'uint256',
},
],
stateMutability: 'view',
type: 'function',
Expand Down Expand Up @@ -1009,22 +969,6 @@ export const data = [
type: 'function',
description: 'Sells tokens to the funding manager for a recipient',
},
{
inputs: [
{ internalType: 'address', name: 'fundingManager', type: 'address' },
{
internalType: 'uint256',
name: 'amount',
type: 'uint256',
tags: ['decimals:extras:issuanceToken'],
},
{ internalType: 'uint256', name: 'duration', type: 'uint256' },
],
name: 'setRewards',
outputs: [],
stateMutability: 'nonpayable',
type: 'function',
},
{
inputs: [],
name: 'trustedForwarder',
Expand Down

0 comments on commit 0fb3677

Please sign in to comment.