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
* Fix typos in documentation and comments
* Update packages/protobuf/src/proto/flow/executiondata/executiondata.proto
---------
Co-authored-by: Jordan Ribbink <17958158+jribbink@users.noreply.github.com>
Copy file name to clipboardExpand all lines: packages/fcl-core/src/wallet-provider-spec/custodial.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,11 +62,11 @@ FCL will always publicly try to fetch these fields when asked for a users inform
62
62
-**`color`** -- A 6 character hex color, could be used by the dapp for personalization
63
63
-**`bio`** -- A small amount of text that a user can use to express themselves
64
64
65
-
If we can give dapp developers a solid foundation of usable information that is in the direct control of the users from the very start, which we belive the above fields would do, our hopes are they can rely more on the chain and will need to store less in their own database.
65
+
If we can give dapp developers a solid foundation of usable information that is in the direct control of the users from the very start, which we believe the above fields would do, our hopes are they can rely more on the chain and will need to store less in their own database.
66
66
67
67
Private data on the other hand has more use cases than general data. It is pretty easy to imagine ordering something and needing information like contact details and where to ship something.
68
68
69
-
Eventually we would love to see that sort of thing handled completely on-chain, securely, privately and safely, but in the interm it probably means storing a copy of data in a database when its needed, and allowed by a user.
69
+
Eventually we would love to see that sort of thing handled completely on-chain, securely, privately and safely, but in the interim it probably means storing a copy of data in a database when its needed, and allowed by a user.
70
70
71
71
The process of a dapp receiving private data is as follows:
72
72
@@ -259,14 +259,14 @@ Below is the public authorization hook we received during the challenge above.
259
259
}
260
260
```
261
261
262
-
FCL will take that hook and do the following post requeset:
262
+
FCL will take that hook and do the following post request:
263
263
264
264
```
265
265
POST https://provider.com/flow/authorize
266
266
?id=2345432
267
267
---
268
268
{
269
-
message: "...", // what needs to be signed (needs to be convered from hex to binary before signing)
269
+
message: "...", // what needs to be signed (needs to be converted from hex to binary before signing)
270
270
addr: "0xab4U9KMf", // the flow address that needs to sign
271
271
keyId: 3, // the flow account keyId for the private key that needs to sign
By default `@onflow/fcl` defaults to using the HTTP Access Node endpoint via the [HTTP Transport](/packages/transport-http/) package (`@onflow/transport-http`). This may be overriden, however.
22
+
By default `@onflow/fcl` defaults to using the HTTP Access Node endpoint via the [HTTP Transport](/packages/transport-http/) package (`@onflow/transport-http`). This may be overridden, however.
23
23
24
24
If using the gRPC Access API, the `sdk.transport` configuration key must be populated as this value defaults to the HTTP API transport. The SDK can be configured to use the gRPC API transport as follows:
0 commit comments