Skip to content

Commit 130866a

Browse files
committed
move and rename items contracts. They're token contracts with support added for sales contracts
1 parent 0330074 commit 130866a

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

packages/utils/abi/src/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ export { abi as walletProxyHookAbi } from './wallet/walletProxyHook'
1212
export { walletContracts } from './wallet'
1313

1414
export { ERC1155_ABI } from './tokens/erc1155'
15+
export { ERC1155_ITEMS_ABI } from './tokens/erc1155Items'
1516
export { ERC20_ABI } from './tokens/erc20'
1617
export { ERC6909_ABI } from './tokens/erc6909'
1718
export { ERC721_ABI } from './tokens/erc721'
19+
export { ERC721_ITEMS_ABI } from './tokens/erc721Items'
1820

1921
export { ERC1155_SALE_ABI } from './sale/erc1155Sale'
2022
export { ERC721_SALE_ABI } from './sale/erc721Sale'
21-
22-
export { ERC1155_SALE_ITEMS_ABI } from './saleItems/erc1155SaleItems'
23-
export { ERC721_SALE_ITEMS_ABI } from './saleItems/erc721SaleItems'

packages/utils/abi/src/saleItems/erc1155SaleItems.ts renamed to packages/utils/abi/src/tokens/erc1155Items.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
export const ERC1155_SALE_ITEMS_ABI = [
1+
//And ERC 1155 token contract with batchMint support, to make it compatible with Sequence Sales contracts (../sale/erc1155Sale.ts)
2+
export const ERC1155_ITEMS_ABI = [
23
{ type: 'constructor', inputs: [], stateMutability: 'nonpayable' },
34
{
45
type: 'function',

packages/utils/abi/src/saleItems/erc721SaleItems.ts renamed to packages/utils/abi/src/tokens/erc721Items.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
export const ERC721_SALE_ITEMS_ABI = [
1+
//And ERC 721 token contract with batchMint support, to make it compatible with Sequence Sales contracts (../sale/erc721Sale.ts)
2+
export const ERC721_ITEMS_ABI = [
23
{ type: 'constructor', inputs: [], stateMutability: 'nonpayable' },
34
{
45
type: 'function',

0 commit comments

Comments
 (0)