Skip to content

Commit

Permalink
fix: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Jul 12, 2024
1 parent fba3732 commit 112175f
Show file tree
Hide file tree
Showing 20 changed files with 1,484 additions and 225 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build-external-contracts = [ ]
description = "Cairo compiler features"
name = "compiler_cairo_features"
seed = "compiler_cairo_features"
namespace = "ccf"
namespace = { default = "ccf" }

[tool.dojo.env]
rpc_url = "http://localhost:5050/"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"type": "event",
"name": "compiler_cairo::cairo_24::cairo_v240::Event",
"kind": "enum",
"variants": []
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"type": "event",
"name": "compiler_cairo::cairo_26::cairo_v260::Event",
"kind": "enum",
"variants": []
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
[
{
"type": "impl",
"name": "WorldProviderImpl",
"interface_name": "dojo::world::IWorldProvider"
},
{
"type": "struct",
"name": "dojo::world::IWorldDispatcher",
"members": [
{
"name": "contract_address",
"type": "core::starknet::contract_address::ContractAddress"
}
]
},
{
"type": "interface",
"name": "dojo::world::IWorldProvider",
"items": [
{
"type": "function",
"name": "world",
"inputs": [],
"outputs": [
{
"type": "dojo::world::IWorldDispatcher"
}
],
"state_mutability": "view"
}
]
},
{
"type": "impl",
"name": "UpgradableImpl",
"interface_name": "dojo::components::upgradeable::IUpgradeable"
},
{
"type": "interface",
"name": "dojo::components::upgradeable::IUpgradeable",
"items": [
{
"type": "function",
"name": "upgrade",
"inputs": [
{
"name": "new_class_hash",
"type": "core::starknet::class_hash::ClassHash"
}
],
"outputs": [],
"state_mutability": "external"
}
]
},
{
"type": "constructor",
"name": "constructor",
"inputs": []
},
{
"type": "event",
"name": "dojo::components::upgradeable::upgradeable::Upgraded",
"kind": "struct",
"members": [
{
"name": "class_hash",
"type": "core::starknet::class_hash::ClassHash",
"kind": "data"
}
]
},
{
"type": "event",
"name": "dojo::components::upgradeable::upgradeable::Event",
"kind": "enum",
"variants": [
{
"name": "Upgraded",
"type": "dojo::components::upgradeable::upgradeable::Upgraded",
"kind": "nested"
}
]
},
{
"type": "event",
"name": "dojo::base::base::Event",
"kind": "enum",
"variants": [
{
"name": "UpgradeableEvent",
"type": "dojo::components::upgradeable::upgradeable::Event",
"kind": "flat"
}
]
}
]
Loading

0 comments on commit 112175f

Please sign in to comment.