-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: bitfalt <75431447+bitfalt@users.noreply.github.com> Co-authored-by: Alfredo Bonilla <info@alfredobonilla.com> Co-authored-by: Jonatan Chaverri <jonatan.chaverri@kyndryl.com>
- Loading branch information
1 parent
b123d11
commit bb393dc
Showing
7 changed files
with
516 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
mod cofi_collection; | ||
mod marketplace; | ||
|
||
mod test { | ||
mod test_cofi_collection; | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* This file is autogenerated by Scaffold-Stark. | ||
* You should not edit it manually or your changes might be overwritten. | ||
*/ | ||
|
||
const configExternalContracts = {} as const; | ||
|
||
export default configExternalContracts; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* This file is autogenerated by Scaffold-Stark. | ||
* You should not edit it manually or your changes might be overwritten. | ||
*/ | ||
|
||
const deployedContracts = {} as const; | ||
|
||
export default deployedContracts; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/** | ||
* This file is autogenerated by Scaffold-Stark. | ||
* You should not edit it manually or your changes might be overwritten. | ||
*/ | ||
|
||
import { | ||
devnetEthClassHash, | ||
devnetStrkClassHash, | ||
universalEthAddress, | ||
sepoliaMainnetEthClassHash, | ||
universalStrkAddress, | ||
sepoliaMainnetStrkClassHash, | ||
universalErc20Abi, | ||
} from "../utils/Constants"; | ||
|
||
const preDeployedContracts = { | ||
devnet: { | ||
Eth: { | ||
address: universalEthAddress, | ||
abi: universalErc20Abi, | ||
classHash: devnetEthClassHash, | ||
}, | ||
Strk: { | ||
address: universalStrkAddress, | ||
abi: universalErc20Abi, | ||
classHash: devnetStrkClassHash, | ||
}, | ||
}, | ||
sepolia: { | ||
Eth: { | ||
address: universalEthAddress, | ||
abi: universalErc20Abi, | ||
classHash: sepoliaMainnetEthClassHash, | ||
}, | ||
Strk: { | ||
address: universalStrkAddress, | ||
abi: universalErc20Abi, | ||
classHash: sepoliaMainnetStrkClassHash, | ||
}, | ||
}, | ||
mainnet: { | ||
Eth: { | ||
address: universalEthAddress, | ||
abi: universalErc20Abi, | ||
classHash: sepoliaMainnetEthClassHash, | ||
}, | ||
Strk: { | ||
address: universalStrkAddress, | ||
abi: universalErc20Abi, | ||
classHash: sepoliaMainnetStrkClassHash, | ||
}, | ||
}, | ||
} as const; | ||
|
||
export default preDeployedContracts; |