Skip to content

Commit

Permalink
refactor: change import for LSP11 in lsp-smart-contracts to use lates…
Browse files Browse the repository at this point in the history
…t version of LSP11
  • Loading branch information
CJ42 committed Jan 10, 2025
1 parent df86aee commit f8469dc
Show file tree
Hide file tree
Showing 28 changed files with 65 additions and 2,141 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
/package
/module
packages/*/types/
packages/*/artifacts/
packages/*/artifacts/
packages/*/CHANGELOG.md
10 changes: 5 additions & 5 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ src = 'packages/lsp2-contracts/contracts'
test = 'packages/lsp2-contracts/foundry'
out = 'packages/lsp2-contracts/contracts/foundry_artifacts'

[profile.lsp11]
src = 'packages/lsp11-contracts/contracts'
test = 'packages/lsp11-contracts/foundry'
out = 'packages/lsp11-contracts/contracts/foundry_artifacts'

[profile.lsp6]
src = 'packages/lsp6-contracts/contracts'
test = 'packages/lsp6-contracts/foundry'
out = 'packages/lsp6-contracts/contracts/foundry_artifacts'

[profile.lsp11]
src = 'packages/lsp11-contracts/contracts'
test = 'packages/lsp11-contracts/foundry'
out = 'packages/lsp11-contracts/contracts/foundry_artifacts'

[profile.lsp16]
src = 'packages/lsp16-contracts/contracts'
test = 'packages/lsp16-contracts/foundry'
Expand Down
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion packages/lsp-smart-contracts/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import { INTERFACE_ID_LSP6 } from '@lukso/lsp6-contracts';
import { INTERFACE_ID_LSP7 } from '@lukso/lsp7-contracts';
import { INTERFACE_ID_LSP8 } from '@lukso/lsp8-contracts';
import { INTERFACE_ID_LSP9 } from '@lukso/lsp9-contracts';
import { INTERFACE_ID_LSP11 } from '@lukso/lsp11-contracts';
import { INTERFACE_ID_LSP14 } from '@lukso/lsp14-contracts';
import {
INTERFACE_ID_LSP17Extendable,
Expand Down Expand Up @@ -111,12 +112,12 @@ export const INTERFACE_IDS = {
LSP7DigitalAsset: INTERFACE_ID_LSP7,
LSP8IdentifiableDigitalAsset: INTERFACE_ID_LSP8,
LSP9Vault: INTERFACE_ID_LSP9,
LSP11SocialRecovery: INTERFACE_ID_LSP11,
LSP14Ownable2Step: INTERFACE_ID_LSP14,
LSP17Extendable: INTERFACE_ID_LSP17Extendable,
LSP17Extension: INTERFACE_ID_LSP17Extension,
LSP20CallVerification: INTERFACE_ID_LSP20CallVerification,
LSP20CallVerifier: INTERFACE_ID_LSP20CallVerifier,
LSP11BasicSocialRecovery: '0x049a28f1',
LSP25ExecuteRelayCall: INTERFACE_ID_LSP25,
LSP26FollowerSystem: INTERFACE_ID_LSP26,
} as const;
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit f8469dc

Please sign in to comment.