Skip to content

Commit

Permalink
Merge pull request #47 from nduplessis/main
Browse files Browse the repository at this point in the history
New Tool: Build a Flow SDK - Milestone 1
  • Loading branch information
psiemens authored Oct 3, 2021
2 parents 351650f + c4112bc commit 541aded
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions submissions/issue-20/milestone-1/nduplessis/milestone-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
## [New Tool: Build a Flow SDK] - Milestone 1

## Description

This PR is for issue #20.

This version of the Ruby SDK provides gRPC communication and a number of the SDK user stories, including script execution and single sig transaction signing and sending.

Usage documentation is available at https://github.com/glucode/flow_client

## Features:

Blocks:

- [ ] retrieve a block by ID
- [ ] retrieve a block by height
- [x] retrieve the latest block

Collections:

- [ ] retrieve a collection by ID

Events:

- [x] retrieve events by name in the block height range

Scripts:

- [x] submit a script and parse the response
- [x] submit a script with arguments and parse the response

Accounts:

- [x] retrieve an account by address
- [ ] create a new account
- [ ] deploy a new contract to the account
- [ ] remove a contract from the account
- [ ] update an existing contract on the account

Transactions:

- [x] retrieve a transaction by ID
- [ ] sign a transaction (single payer, proposer, authorizer or combination of multiple)
- [x] submit a signed transaction
- [x] sign a transaction with arguments and submit it

## Milestones

- [x] 1: Implement the gRPC layer of the SDK, allowing communication with the Flow blockchain
- [ ] 2: Accomplish transaction signing in a way that handles the complex algorithm / hashing / encoding for the user.
- [ ] 3: Meet and exceed Flow SDK guidelines
- [ ] 4: Complete documentation and common usage examples are available

0 comments on commit 541aded

Please sign in to comment.