Skip to content

Commit e9d1c21

Browse files
committedSep 12, 2024
test(sdk): initial fork test for zora mint; missing params
need to update the event signature and filter params
1 parent eca42d9 commit e9d1c21

File tree

2 files changed

+114
-0
lines changed

2 files changed

+114
-0
lines changed
 

‎packages/sdk/.env.sample

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ VITE_ERC20_VARIABLE_INCENTIVE_BASE=
1414
VITE_ERC1155_INCENTIVE_BASE=
1515
VITE_POINTS_INCENTIVE_BASE=
1616
VITE_SIGNER_VALIDATOR_BASE=
17+
VITE_BASE_MAINNET_RPC=
+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
import {
2+
loadFixture,
3+
reset,
4+
} from '@nomicfoundation/hardhat-toolbox-viem/network-helpers';
5+
import { type Address, type Hex, parseEther } from 'viem';
6+
import { beforeAll, beforeEach, describe, expect, test, vi } from 'vitest';
7+
import { BoostCore } from '../src/BoostCore';
8+
import {
9+
type ActionStep,
10+
FilterType,
11+
PrimitiveType,
12+
SignatureType,
13+
StrategyType,
14+
} from '../src/utils';
15+
import {
16+
type BudgetFixtures,
17+
type Fixtures,
18+
defaultOptions,
19+
deployFixtures,
20+
fundBudget,
21+
} from './helpers';
22+
23+
let fixtures: Fixtures, budgets: BudgetFixtures;
24+
25+
describe('Boost with NFT Minting Incentive', () => {
26+
const ZORA_CHAIN_URL = process.env.VITE_BASE_MAINNET_RPC;
27+
const ZORA_CHAIN_BLOCK = 19694536; // Replace with actual block number
28+
29+
beforeAll(async () => {
30+
await reset(ZORA_CHAIN_URL, ZORA_CHAIN_BLOCK);
31+
fixtures = await loadFixture(deployFixtures);
32+
});
33+
beforeEach(async () => {
34+
budgets = await loadFixture(fundBudget(defaultOptions, fixtures));
35+
});
36+
37+
test('should create a boost for incentivizing NFT minting', async () => {
38+
const { budget, erc20 } = budgets;
39+
const targetContract = '0xDa8dD2807A33FDA5983F56812765a88B46f0B90B';
40+
41+
const { core, bases } = fixtures;
42+
const client = new BoostCore({
43+
...defaultOptions,
44+
address: core.assertValidAddress(),
45+
});
46+
const owner = defaultOptions.account.address;
47+
48+
// Step defining the action for Transfer event
49+
const eventActionStep: ActionStep = {
50+
signature: '0xddf252ad', // Transfer(address,address,uint256) event signature
51+
signatureType: SignatureType.EVENT, // We're working with an event
52+
actionType: 0, // Custom action type (set as 0 for now)
53+
targetContract: targetContract, // Address of the ERC20 contract
54+
actionParameter: {
55+
filterType: FilterType.EQUAL, // Filter to check for equality
56+
fieldType: PrimitiveType.ADDRESS, // The field we're filtering is an address
57+
fieldIndex: 0, // Field 0 is the 'from' address in the event
58+
filterData: targetContract, // Filtering based on the core address
59+
},
60+
};
61+
62+
// Define EventActionPayload manually
63+
const eventActionPayload = {
64+
actionClaimant: {
65+
signatureType: SignatureType.EVENT,
66+
signature: '0xddf252ad' as Hex, // Transfer(address,address,uint256) event signature
67+
fieldIndex: 0, // Targeting the 'from' address
68+
targetContract: targetContract as Address, // The ERC20 contract we're monitoring
69+
},
70+
actionStepOne: eventActionStep, // Use the custom step for action
71+
actionStepTwo: eventActionStep, // Repeat the action step if necessary
72+
actionStepThree: eventActionStep, // You can expand for more steps if needed
73+
actionStepFour: eventActionStep, // Up to 4 action steps
74+
};
75+
76+
// Initialize EventAction with the custom payload
77+
const eventAction = new bases.EventAction(
78+
defaultOptions,
79+
eventActionPayload,
80+
);
81+
82+
console.log('Creating boost with EventAction');
83+
console.log('owner:', owner);
84+
console.log('budget:', budget);
85+
console.log('eventAction:', eventAction);
86+
console.log('erc20:', erc20);
87+
// Create the boost using the custom EventAction
88+
await client.createBoost({
89+
protocolFee: 1n,
90+
referralFee: 2n,
91+
maxParticipants: 100n,
92+
budget: budget, // Use the ManagedBudget
93+
action: eventAction, // Pass the manually created EventAction
94+
validator: new bases.SignerValidator(defaultOptions, {
95+
signers: [owner],
96+
validatorCaller: owner,
97+
}),
98+
allowList: new bases.SimpleAllowList(defaultOptions, {
99+
owner: owner,
100+
allowed: [owner],
101+
}),
102+
incentives: [
103+
new bases.ERC20Incentive(defaultOptions, {
104+
asset: erc20.assertValidAddress(),
105+
reward: parseEther('1'),
106+
limit: 100n,
107+
strategy: StrategyType.POOL,
108+
}),
109+
],
110+
});
111+
expect(await client.getBoostCount()).toBe(1n);
112+
});
113+
});

0 commit comments

Comments
 (0)
Please sign in to comment.