Skip to content

Commit ba12ff1

Browse files
committed
Reverted failing build.
1 parent c289980 commit ba12ff1

File tree

19 files changed

+1
-66
lines changed

19 files changed

+1
-66
lines changed

.vitepress/config.mts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ export default withMermaid({
2222
{text: 'Architecture', link: '/guide/cosmwasm-core/architecture/architecture'},
2323
{text: 'Conventions', collapsed: true, link: '/guide/cosmwasm-core/conventions/conventions'}
2424
]
25-
},
26-
{
27-
text: 'Wasmd'
2825
}]
2926
},
3027
],

.vitepress/theme/components/ChapterLabel.vue

Lines changed: 0 additions & 25 deletions
This file was deleted.

.vitepress/theme/index.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
import type { Theme } from 'vitepress'
22
import DefaultTheme from 'vitepress/theme'
3-
import ChapterLabel from './components/ChapterLabel.vue'
43
import './style.css'
54

65
export default {
76
extends: DefaultTheme,
8-
enhanceApp({ app }) {
9-
// register your custom global components
10-
app.component('ChapterLabel', ChapterLabel)
11-
}
127
} satisfies Theme

pages/guide/cosmwasm-core/architecture/actor-model.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
[reentrancy issues]: https://ethereum.org/en/developers/docs/smart-contracts/security/#reentrancy
22
[enum dispatch]: ../conventions/enum-dispatch
33
[CEI pattern (Checks, Effects, Interactions)]: https://fravoll.github.io/solidity-patterns/checks_effects_interactions.html
4-
5-
<ChapterLabel label="core"></ChapterLabel>
64

75
# Actor model
86

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<ChapterLabel label="core"></ChapterLabel>
2-
31
# Architecture
42

53
(TBD)

pages/guide/cosmwasm-core/architecture/gas.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
[inspired by NEAR]: https://docs.near.org/concepts/protocol/gas
55
[#1120]: https://github.com/CosmWasm/cosmwasm/pull/1120
66

7-
<ChapterLabel label="core"></ChapterLabel>
8-
97
# Gas
108

119
Gas is a way to measure computational expense of a smart contract execution, including CPU time and

pages/guide/cosmwasm-core/architecture/transactions.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<ChapterLabel label="core"></ChapterLabel>
2-
31
# Transactions
42

53
Every contract invocation is wrapped into a transaction. If you know about transactions in SQL

pages/guide/cosmwasm-core/conventions/conventions.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<ChapterLabel label="core"></ChapterLabel>
2-
31
# Conventions
42

53
Just like with any platform, there are certain conventions on how to write contracts for CosmWasm.

pages/guide/cosmwasm-core/conventions/enum-dispatch.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<ChapterLabel label="core"></ChapterLabel>
2-
31
# Enum dispatch
42

53
In most production contracts you want to handle multiple message types in a single contract.

pages/guide/cosmwasm-core/conventions/library-feature.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
[`cw-plus` contracts]: https://github.com/CosmWasm/cw-plus
22
[`cw4-stake` contract]: https://github.com/CosmWasm/cw-plus/blob/48bec694521655d5b3e688c51e4185f740ea4640/contracts/cw4-stake/Cargo.toml#L22-L24
33

4-
<ChapterLabel label="core"></ChapterLabel>
5-
64
# Library feature
75

86
In the ecosystem, there is the convention to gate the entrypoints of your contract behind a

0 commit comments

Comments
 (0)