Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated copyright year and added new event types #157

Merged
merged 2 commits into from
Mar 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions event.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Flow Go SDK
*
* Copyright 2019-2020 Dapper Labs, Inc.
* Copyright 2019-2021 Dapper Labs, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -26,7 +26,12 @@ import (

// List of built-in account event types.
const (
EventAccountCreated string = "flow.AccountCreated"
EventAccountCreated string = "flow.AccountCreated"
EventAccountAdded string = "flow.AccountKeyAdded"
EventAccountKeyRemoved string = "flow.AccountKeyRemoved"
EventAccountContractAdded string = "flow.AccountContractAdded"
EventAccountContractUpdated string = "flow.AccountContractUpdated"
EventAccountContractRemoved string = "flow.AccountContractRemoved"
)

type Event struct {
Expand Down