Skip to content

Commit e6c471e

Browse files
committed
aptos: specify payeeAddress requirement
1 parent f2521ba commit e6c471e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

aptos/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ The executor folder was generated with `aptos move init --name executor`.
44

55
This module was developed with aptos CLI `7.2.0`. It should generally match the Sui implementation with minor changes necessary for Aptos-specific implementation details.
66

7+
> 💡 Note: The `payeeAddress` on the signed quote must be registered for `AptosCoin` before being able to receive payments.
8+
79
## Development
810

911
[Move IDE Plugins](https://aptos.dev/en/build/smart-contracts#move-ide-plugins)
@@ -37,14 +39,22 @@ aptos init
3739

3840
Then, publish the module immutably via a resource account.
3941

42+
<!-- cspell:disable -->
43+
4044
```bash
4145
aptos move create-resource-account-and-publish-package --address-name executor --seed-encoding Utf8 --seed executorv1
4246
```
4347

48+
<!-- cspell:enable -->
49+
4450
Repeat this with the `executor_requests` module.
4551

52+
<!-- cspell:disable -->
53+
4654
```bash
4755
cd executor
4856
aptos init
4957
aptos move create-resource-account-and-publish-package --address-name executor_requests --named-addresses executor=<ADDRESS_FROM_PREVIOUS_STEP> --seed-encoding Utf8 --seed executor_requestsv1
5058
```
59+
60+
<!-- cspell:enable -->

0 commit comments

Comments
 (0)