Skip to content

Commit 7da3ddd

Browse files
committed
Fix merge conflict
Signed-off-by: Nicko Guyer <[email protected]>
1 parent 5032a1a commit 7da3ddd

File tree

1 file changed

+6
-27
lines changed

1 file changed

+6
-27
lines changed

doc-site/docs/tutorials/tokens/erc721.md

Lines changed: 6 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,10 @@ After your stack is up and running, the first thing you need to do is create a t
2828
If you're using the default ERC-20 / ERC-721 token connector and its sample token factory, it will automatically deploy a new ERC-721 contract instance.
2929

3030
#### Request
31-
<<<<<<< HEAD:docs/tutorials/tokens/erc721.md
32-
`POST` `http://127.0.0.1:5000/api/v1/namespaces/default/tokens/pools?publish=true`
3331

34-
> *NOTE*: Without passing the query parameter `publish=true` when the token pool is created, it will initially be unpublished and not broadcasted to other members of the network (if configured in multi-party). To publish the token pool, a subsequent API call would need to be made to `/tokens/pools/{nameOrId}/publish`
35-
=======
32+
`POST` `http://127.0.0.1:5000/api/v1/namespaces/default/tokens/pools?publish=true`
3633

37-
`POST` `http://127.0.0.1:5000/api/v1/namespaces/default/tokens/pools`
38-
>>>>>>> main:doc-site/docs/tutorials/tokens/erc721.md
34+
> _NOTE_: Without passing the query parameter `publish=true` when the token pool is created, it will initially be unpublished and not broadcasted to other members of the network (if configured in multi-party). To publish the token pool, a subsequent API call would need to be made to `/tokens/pools/{nameOrId}/publish`
3935
4036
```json
4137
{
@@ -48,19 +44,6 @@ If you're using the default ERC-20 / ERC-721 token connector and its sample toke
4844

4945
```json
5046
{
51-
<<<<<<< HEAD:docs/tutorials/tokens/erc721.md
52-
"id": "a92a0a25-b886-4b43-931f-4add2840258a",
53-
"type": "nonfungible",
54-
"namespace": "default",
55-
"name": "nfts",
56-
"key": "0x14ddd36a0c2f747130915bf5214061b1e4bec74c",
57-
"connector": "erc20_erc721",
58-
"tx": {
59-
"type": "token_pool",
60-
"id": "00678116-89d2-4295-990c-bd5ffa6e2434"
61-
},
62-
"published": true
63-
=======
6447
"id": "a92a0a25-b886-4b43-931f-4add2840258a",
6548
"type": "nonfungible",
6649
"namespace": "default",
@@ -70,8 +53,8 @@ If you're using the default ERC-20 / ERC-721 token connector and its sample toke
7053
"tx": {
7154
"type": "token_pool",
7255
"id": "00678116-89d2-4295-990c-bd5ffa6e2434"
73-
}
74-
>>>>>>> main:doc-site/docs/tutorials/tokens/erc721.md
56+
},
57+
"published": true
7558
}
7659
```
7760

@@ -124,14 +107,10 @@ See the [README](https://github.com/hyperledger/firefly-tokens-erc20-erc721/blob
124107
You can pass a `config` object with an `address` and `blockNumber` when you make the request to create the token pool, and if you created a contract interface, you can include the `interface` ID as well.
125108

126109
#### Request
127-
<<<<<<< HEAD:docs/tutorials/tokens/erc721.md
128-
`POST` `http://127.0.0.1:5000/api/v1/namespaces/default/tokens/pools?publish=true`
129110

130-
> *NOTE*: Without passing the query parameter `publish=true` when the token pool is created, it will initially be unpublished and not broadcasted to other members of the network (if configured in multi-party). To publish the token pool, a subsequent API call would need to be made to `/tokens/pools/{nameOrId}/publish`
131-
=======
111+
`POST` `http://127.0.0.1:5000/api/v1/namespaces/default/tokens/pools?publish=true`
132112

133-
`POST` `http://127.0.0.1:5000/api/v1/namespaces/default/tokens/pools`
134-
>>>>>>> main:doc-site/docs/tutorials/tokens/erc721.md
113+
> _NOTE_: Without passing the query parameter `publish=true` when the token pool is created, it will initially be unpublished and not broadcasted to other members of the network (if configured in multi-party). To publish the token pool, a subsequent API call would need to be made to `/tokens/pools/{nameOrId}/publish`
135114
136115
```json
137116
{

0 commit comments

Comments
 (0)