Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus committed Apr 3, 2024
1 parent f115a39 commit c20b1f7
Show file tree
Hide file tree
Showing 14 changed files with 3,680 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = 1
[[package]]
name = "dojo"
version = "0.5.1"
source = "git+https://github.com/dojoengine/dojo?tag=v0.6.0-alpha.7#f4c8111aefe2672d04356df64914871a5bcb536d"
source = "git+https://github.com/dojoengine/dojo?tag=v0.6.0-alpha.12#c595fc927b7e33bd2c1d14e75dba459229d40363"
dependencies = [
"dojo_plugin",
]
Expand Down
2 changes: 1 addition & 1 deletion Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ migrate = "sozo build && sozo migrate && ./scripts/default_auth.sh"
spawn = "./scripts/spawn.sh"

[dependencies]
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.6.0-alpha.7" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.6.0-alpha.12" }

[[target.dojo]]

Expand Down
239 changes: 239 additions & 0 deletions abis/base/models/moved.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,239 @@
[
{
"type": "impl",
"name": "DojoModelImpl",
"interface_name": "dojo::model::IDojoModel"
},
{
"type": "struct",
"name": "core::array::Span::<core::integer::u8>",
"members": [
{
"name": "snapshot",
"type": "@core::array::Array::<core::integer::u8>"
}
]
},
{
"type": "struct",
"name": "core::array::Span::<core::felt252>",
"members": [
{
"name": "snapshot",
"type": "@core::array::Array::<core::felt252>"
}
]
},
{
"type": "struct",
"name": "core::array::Span::<core::array::Span::<core::felt252>>",
"members": [
{
"name": "snapshot",
"type": "@core::array::Array::<core::array::Span::<core::felt252>>"
}
]
},
{
"type": "struct",
"name": "dojo::database::introspect::Struct",
"members": [
{
"name": "name",
"type": "core::felt252"
},
{
"name": "attrs",
"type": "core::array::Span::<core::felt252>"
},
{
"name": "children",
"type": "core::array::Span::<core::array::Span::<core::felt252>>"
}
]
},
{
"type": "struct",
"name": "core::array::Span::<(core::felt252, core::array::Span::<core::felt252>)>",
"members": [
{
"name": "snapshot",
"type": "@core::array::Array::<(core::felt252, core::array::Span::<core::felt252>)>"
}
]
},
{
"type": "struct",
"name": "dojo::database::introspect::Enum",
"members": [
{
"name": "name",
"type": "core::felt252"
},
{
"name": "attrs",
"type": "core::array::Span::<core::felt252>"
},
{
"name": "children",
"type": "core::array::Span::<(core::felt252, core::array::Span::<core::felt252>)>"
}
]
},
{
"type": "enum",
"name": "dojo::database::introspect::Ty",
"variants": [
{
"name": "Primitive",
"type": "core::felt252"
},
{
"name": "Struct",
"type": "dojo::database::introspect::Struct"
},
{
"name": "Enum",
"type": "dojo::database::introspect::Enum"
},
{
"name": "Tuple",
"type": "core::array::Span::<core::array::Span::<core::felt252>>"
},
{
"name": "Array",
"type": "core::integer::u32"
}
]
},
{
"type": "interface",
"name": "dojo::model::IDojoModel",
"items": [
{
"type": "function",
"name": "name",
"inputs": [],
"outputs": [
{
"type": "core::felt252"
}
],
"state_mutability": "view"
},
{
"type": "function",
"name": "unpacked_size",
"inputs": [],
"outputs": [
{
"type": "core::integer::u32"
}
],
"state_mutability": "view"
},
{
"type": "function",
"name": "packed_size",
"inputs": [],
"outputs": [
{
"type": "core::integer::u32"
}
],
"state_mutability": "view"
},
{
"type": "function",
"name": "layout",
"inputs": [],
"outputs": [
{
"type": "core::array::Span::<core::integer::u8>"
}
],
"state_mutability": "view"
},
{
"type": "function",
"name": "schema",
"inputs": [],
"outputs": [
{
"type": "dojo::database::introspect::Ty"
}
],
"state_mutability": "view"
}
]
},
{
"type": "impl",
"name": "movedImpl",
"interface_name": "dojo_starter::systems::actions::actions::Imoved"
},
{
"type": "enum",
"name": "dojo_starter::models::moves::Direction",
"variants": [
{
"name": "None",
"type": "()"
},
{
"name": "Left",
"type": "()"
},
{
"name": "Right",
"type": "()"
},
{
"name": "Up",
"type": "()"
},
{
"name": "Down",
"type": "()"
}
]
},
{
"type": "struct",
"name": "dojo_starter::systems::actions::actions::Moved",
"members": [
{
"name": "player",
"type": "core::starknet::contract_address::ContractAddress"
},
{
"name": "direction",
"type": "dojo_starter::models::moves::Direction"
}
]
},
{
"type": "interface",
"name": "dojo_starter::systems::actions::actions::Imoved",
"items": [
{
"type": "function",
"name": "ensure_abi",
"inputs": [
{
"name": "model",
"type": "dojo_starter::systems::actions::actions::Moved"
}
],
"outputs": [],
"state_mutability": "view"
}
]
},
{
"type": "event",
"name": "dojo_starter::systems::actions::actions::moved::Event",
"kind": "enum",
"variants": []
}
]
Loading

0 comments on commit c20b1f7

Please sign in to comment.