You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After `docker-compose up -d`, two services named `yosemited` and `keyos` will be started. The yosemited service would expose ports 8888 and 9876 to the host. The keyos service does not expose any port to the host, it is only accessible to infra-cli when running cleos is running inside the keyos container as described in "Execute infra-cli commands" section.
69
+
After `docker-compose up -d`, two services named `yosemited` and `keyos` will be started. The yosemited service would expose ports 8888 and 9876 to the host. The keyos service does not expose any port to the host, it is only accessible to infra-cli when running infra-cli is running inside the keyos container as described in "Execute infra-cli commands" section.
@@ -26,7 +26,7 @@ Request escrow to the third party to transfer the YOSEMITE token
26
26
* The amount of token is transferred to the `thirdparty` account. Only when the third party calls 'proceed' action with the specified id, it is transferred to the 'to' account.
27
27
* The native token with the specific system depository can be in escrow with this action.
1. thirdparty : account name of the third party providing escrow service
@@ -51,7 +51,7 @@ Request escrow to the third party to transfer the native token regardless of the
51
51
52
52
* The amount of native token is transferred to the `thirdparty` account. Only when the third party calls 'proceed' action with the specified id, it is transferred to the 'to' account.
Copy file name to clipboardExpand all lines: contracts/yx.nft/README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ Create NFT with its symbol
40
40
* The NFT creator naturally becomes the NFT depository.
41
41
* Enabling the setting of options cannot be done any more after creation, because the owners of the NFT should know about what options can be set and it must not be changed after they own.
@@ -102,11 +102,11 @@ Redeem(burn) NFT from an account by the NFT depository
102
102
103
103
* At first, the account transfers the NFT to the depository.
104
104
```
105
-
clyos push action yx.nft transferid '{"from":"user1","to":"gameprovider","issuer":"gameprovider","ids":[0,1],"memo":"transfer for redeem"}' -p user1
105
+
infra-cli push action yx.nft transferid '{"from":"user1","to":"gameprovider","issuer":"gameprovider","ids":[0,1],"memo":"transfer for redeem"}' -p user1
106
106
```
107
107
* Then the NFT depository checks the transfer action is irreversible and calls redeem action.
108
108
```
109
-
clyos push action yx.nft redeem '{"issuer":"gameprovider","ids":[0,1],"memo":"redeem for user1"}' -p gameprovider
109
+
infra-cli push action yx.nft redeem '{"issuer":"gameprovider","ids":[0,1],"memo":"redeem for user1"}' -p gameprovider
110
110
```
111
111
112
112
### parameters of redeem
@@ -119,7 +119,7 @@ Transfer NFTs
119
119
120
120
* Note that transfer action is not supported for NFT. All NFTs are different each other so that it cannot be distinguishable with just the token symbol and issuer.
0 commit comments