Skip to content

Commit

Permalink
Update Michelson.md
Browse files Browse the repository at this point in the history
  • Loading branch information
keefertaylor authored Jul 31, 2019
1 parent ef95617 commit e98d3e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Michelson.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ TezosKit can also introsepct contract storage and big maps. Since the set of ent
### Introspect Contract Storage
Simply call the contract storage API on TezosNodeClient. The result will be a `[String: Any]` object which represents the JSON structure of the contract's storage.

```
```swift
let contractAddress = "KT1..."
let tezosNodeClient = TezosNodeClient()
tezosNodeClient.getContractStorage(address: contractAddress) { result in
Expand All @@ -111,7 +111,7 @@ Big maps allow introspection of a single value at a time. The key value must hav

For instance, to retrieve the value stored in a big map that is keyed by addresses:

```
```swift
let tezosNodeClient = TezosNodeClient()

// Smart contract containing a big map
Expand Down

0 comments on commit e98d3e5

Please sign in to comment.