Skip to content

Commit

Permalink
typo: rename contracts file name
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigBalthazar committed Jul 8, 2024
1 parent 702dbcb commit 673317b
Show file tree
Hide file tree
Showing 19 changed files with 42 additions and 14 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 5 additions & 1 deletion wrappers/AccessControl.compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ import { CompilerConfig } from '@ton/blueprint';

export const compile: CompilerConfig = {
lang: 'tact',
target: 'contracts/mocks/access/accessControl.tact',
target: 'contracts/mocks/access/AccessControlImp.tact',
options: {
debug: true,
external: true,
experimental: {
inline: true,
},
},
};
4 changes: 4 additions & 0 deletions wrappers/Counter.compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,9 @@ export const compile: CompilerConfig = {
target: 'contracts/mocks/utils/counterImp.tact',
options: {
debug: true,
external: true,
experimental: {
inline: true,
},
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ import { CompilerConfig } from '@ton/blueprint';

export const compile: CompilerConfig = {
lang: 'tact',
target: 'contracts/mocks/tokens/jetton/Jetton.tact',
target: 'contracts/mocks/tokens/jetton/JettonImp.tact',
options: {
debug: true,
external: true,
experimental: {
inline: true,
},
},
};
13 changes: 13 additions & 0 deletions wrappers/MaxSupplyJetton.compile.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { CompilerConfig } from '@ton/blueprint';

export const compile: CompilerConfig = {
lang: 'tact',
target: 'contracts/mocks/tokens/jetton/extensions/MaxSupplyImp.tact',
options: {
debug: true,
external: true,
experimental: {
inline: true,
},
},
};
9 changes: 0 additions & 9 deletions wrappers/MaxSupplyJetton.compile1.ts

This file was deleted.

6 changes: 5 additions & 1 deletion wrappers/Ownable2Step.compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ import { CompilerConfig } from '@ton/blueprint';

export const compile: CompilerConfig = {
lang: 'tact',
target: 'contracts/mocks/access/ownable2StepImp.tact',
target: 'contracts/mocks/access/Ownable2StepImp.tact',
options: {
debug: true,
external: true,
experimental: {
inline: true,
},
},
};
6 changes: 5 additions & 1 deletion wrappers/PaymentSplitter.compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ import { CompilerConfig } from '@ton/blueprint';

export const compile: CompilerConfig = {
lang: 'tact',
target: 'contracts/mocks/payments/PaymentSplitter.tact',
target: 'contracts/mocks/payments/PaymentSplitterImp.tact',
options: {
debug: true,
external: true,
experimental: {
inline: true,
},
},
};
6 changes: 5 additions & 1 deletion wrappers/approveableJetton.compile1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ import { CompilerConfig } from '@ton/blueprint';

export const compile: CompilerConfig = {
lang: 'tact',
target: 'contracts/mocks/tokens/jetton/approveable.tact',
target: 'contracts/mocks/tokens/jetton/extensions/ApproveableImp.tact',
options: {
debug: true,
external: true,
experimental: {
inline: true,
},
},
};

0 comments on commit 673317b

Please sign in to comment.