Skip to content

Commit

Permalink
rebuilt artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
matzayonc committed May 31, 2024
1 parent 6d09880 commit fe83ffa
Show file tree
Hide file tree
Showing 11 changed files with 7,825 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,290 @@
[
{
"type": "impl",
"name": "DojoResourceProviderImpl",
"interface_name": "dojo::world::IDojoResourceProvider"
},
{
"type": "interface",
"name": "dojo::world::IDojoResourceProvider",
"items": [
{
"type": "function",
"name": "dojo_resource",
"inputs": [],
"outputs": [
{
"type": "core::felt252"
}
],
"state_mutability": "view"
}
]
},
{
"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": "ActionsComputedImpl",
"interface_name": "dojo_examples::actions::IActionsComputed"
},
{
"type": "struct",
"name": "dojo_examples::models::Vec2",
"members": [
{
"name": "x",
"type": "core::integer::u32"
},
{
"name": "y",
"type": "core::integer::u32"
}
]
},
{
"type": "struct",
"name": "dojo_examples::models::Position",
"members": [
{
"name": "player",
"type": "core::starknet::contract_address::ContractAddress"
},
{
"name": "vec",
"type": "dojo_examples::models::Vec2"
}
]
},
{
"type": "interface",
"name": "dojo_examples::actions::IActionsComputed",
"items": [
{
"type": "function",
"name": "tile_terrain",
"inputs": [
{
"name": "vec",
"type": "dojo_examples::models::Vec2"
}
],
"outputs": [
{
"type": "core::felt252"
}
],
"state_mutability": "view"
},
{
"type": "function",
"name": "quadrant",
"inputs": [
{
"name": "pos",
"type": "dojo_examples::models::Position"
}
],
"outputs": [
{
"type": "core::integer::u8"
}
],
"state_mutability": "view"
}
]
},
{
"type": "impl",
"name": "ActionsImpl",
"interface_name": "dojo_examples::actions::IActions"
},
{
"type": "enum",
"name": "dojo_examples::models::Direction",
"variants": [
{
"name": "None",
"type": "()"
},
{
"name": "Left",
"type": "()"
},
{
"name": "Right",
"type": "()"
},
{
"name": "Up",
"type": "()"
},
{
"name": "Down",
"type": "()"
}
]
},
{
"type": "struct",
"name": "core::byte_array::ByteArray",
"members": [
{
"name": "data",
"type": "core::array::Array::<core::bytes_31::bytes31>"
},
{
"name": "pending_word",
"type": "core::felt252"
},
{
"name": "pending_word_len",
"type": "core::integer::u32"
}
]
},
{
"type": "interface",
"name": "dojo_examples::actions::IActions",
"items": [
{
"type": "function",
"name": "spawn",
"inputs": [],
"outputs": [],
"state_mutability": "view"
},
{
"type": "function",
"name": "move",
"inputs": [
{
"name": "direction",
"type": "dojo_examples::models::Direction"
}
],
"outputs": [],
"state_mutability": "view"
},
{
"type": "function",
"name": "set_player_config",
"inputs": [
{
"name": "name",
"type": "core::byte_array::ByteArray"
}
],
"outputs": [],
"state_mutability": "view"
}
]
},
{
"type": "impl",
"name": "IDojoInitImpl",
"interface_name": "dojo_examples::actions::actions::IDojoInit"
},
{
"type": "interface",
"name": "dojo_examples::actions::actions::IDojoInit",
"items": [
{
"type": "function",
"name": "dojo_init",
"inputs": [],
"outputs": [],
"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": "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_examples::actions::actions::Event",
"kind": "enum",
"variants": [
{
"name": "UpgradeableEvent",
"type": "dojo::components::upgradeable::upgradeable::Event",
"kind": "nested"
}
]
}
]
Loading

0 comments on commit fe83ffa

Please sign in to comment.