Skip to content
Snippets Groups Projects
  • jkrvivian's avatar
    4a47fc7c
    feat: Implement value web api & client library (#438) · 4a47fc7c
    jkrvivian authored
    * feat: Implement value api: Attachment
    
    * feat: Implement value api: UnspentOutputs
    
    * feat: Implement value api: transactionByID
    
    * feat: Implement client lib & value api: sendTransaction
    
    * fix: minor tweak
    
    * fix: minor fix
    
    * refactor: Refactor sendTransaction api
    
    * Refactor: Fix :dog:
    
    * refactor: Fix :dog:
    
    * refactor: Rename api route of testSendTxn to camel case
    feat: Implement value web api & client library (#438)
    jkrvivian authored
    * feat: Implement value api: Attachment
    
    * feat: Implement value api: UnspentOutputs
    
    * feat: Implement value api: transactionByID
    
    * feat: Implement client lib & value api: sendTransaction
    
    * fix: minor tweak
    
    * fix: minor fix
    
    * refactor: Refactor sendTransaction api
    
    * Refactor: Fix :dog:
    
    * refactor: Fix :dog:
    
    * refactor: Rename api route of testSendTxn to camel case
plugins.go 741 B
package webapi

import (
	"github.com/iotaledger/goshimmer/plugins/webapi"
	"github.com/iotaledger/goshimmer/plugins/webapi/autopeering"
	"github.com/iotaledger/goshimmer/plugins/webapi/data"
	"github.com/iotaledger/goshimmer/plugins/webapi/drng"
	"github.com/iotaledger/goshimmer/plugins/webapi/info"
	"github.com/iotaledger/goshimmer/plugins/webapi/message"
	"github.com/iotaledger/goshimmer/plugins/webapi/spammer"
	"github.com/iotaledger/goshimmer/plugins/webapi/value"
	"github.com/iotaledger/goshimmer/plugins/webauth"
	"github.com/iotaledger/hive.go/node"
)

var PLUGINS = node.Plugins(
	webapi.Plugin,
	webauth.Plugin,
	spammer.Plugin,
	data.Plugin,
	drng.Plugin,
	message.Plugin,
	autopeering.Plugin,
	info.Plugin,
	value.Plugin,
)