@@ -39,10 +39,12 @@ type Manager interface {
3939 GetTokenPools (ctx context.Context , ns string , filter database.AndFilter ) ([]* fftypes.TokenPool , * database.FilterResult , error )
4040 GetTokenPoolsByType (ctx context.Context , ns , connector string , filter database.AndFilter ) ([]* fftypes.TokenPool , * database.FilterResult , error )
4141 GetTokenPool (ctx context.Context , ns , connector , poolName string ) (* fftypes.TokenPool , error )
42+ GetTokenPoolByNameOrID (ctx context.Context , ns string , poolNameOrID string ) (* fftypes.TokenPool , error )
4243 ValidateTokenPoolTx (ctx context.Context , pool * fftypes.TokenPool , protocolTxID string ) error
4344 GetTokenAccounts (ctx context.Context , ns string , filter database.AndFilter ) ([]* fftypes.TokenAccount , * database.FilterResult , error )
4445 GetTokenAccountsByPool (ctx context.Context , ns , connector , poolName string , filter database.AndFilter ) ([]* fftypes.TokenAccount , * database.FilterResult , error )
4546 GetTokenTransfers (ctx context.Context , ns string , filter database.AndFilter ) ([]* fftypes.TokenTransfer , * database.FilterResult , error )
47+ GetTokenTransferByID (ctx context.Context , ns , id string ) (* fftypes.TokenTransfer , error )
4648 GetTokenTransfersByPool (ctx context.Context , ns , connector , poolName string , filter database.AndFilter ) ([]* fftypes.TokenTransfer , * database.FilterResult , error )
4749 NewTransfer (ns , connector , poolName string , transfer * fftypes.TokenTransferInput ) sysmessaging.MessageSender
4850 MintTokens (ctx context.Context , ns , connector , poolName string , transfer * fftypes.TokenTransferInput , waitConfirm bool ) (* fftypes.TokenTransfer , error )
0 commit comments