@@ -4,12 +4,13 @@ import (
4
4
"encoding/json"
5
5
"errors"
6
6
"fmt"
7
+ "strconv"
8
+ "sync"
9
+
7
10
fiber "github.com/gofiber/fiber/v2"
8
11
"github.com/sudoblockio/icon-go-api/models"
9
12
"go.uber.org/zap"
10
13
"gorm.io/gorm"
11
- "strconv"
12
- "sync"
13
14
14
15
"github.com/sudoblockio/icon-go-api/config"
15
16
"github.com/sudoblockio/icon-go-api/crud"
@@ -479,7 +480,7 @@ func handlerGetTransactionAddress(c *fiber.Ctx) error {
479
480
}
480
481
481
482
// Internal transactions by hash
482
- // @Summary Get internal transactions by hash
483
+ // @Summary Get Internal Transactions By Hash
483
484
// @Description Get internal transactions by hash
484
485
// @Tags Transactions
485
486
// @BasePath /api/v1
@@ -551,7 +552,7 @@ func handlerGetInternalTransactionsByHash(c *fiber.Ctx) error {
551
552
}
552
553
553
554
// Internal transactions by address
554
- // @Summary Get internal transactions by address
555
+ // @Summary Get Internal Transactions By Address
555
556
// @Description Get internal transactions by address
556
557
// @Tags Transactions
557
558
// @BasePath /api/v1
@@ -625,7 +626,7 @@ func handlerGetInternalTransactionsAddress(c *fiber.Ctx) error {
625
626
}
626
627
627
628
// Internal transactions by block number
628
- // @Summary Get internal transactions by block number
629
+ // @Summary Get Internal Transactions By Block Number
629
630
// @Description Get internal transactions by block number
630
631
// @Tags Transactions
631
632
// @BasePath /api/v1
@@ -704,7 +705,7 @@ func handlerGetInternalTransactionsBlockNumber(c *fiber.Ctx) error {
704
705
}
705
706
706
707
// TokenTransfers
707
- // @Summary Get token transfers
708
+ // @Summary Get Token Transfers
708
709
// @Description get historical token transfers
709
710
// @Tags Transactions
710
711
// @BasePath /api/v1
@@ -794,7 +795,7 @@ func handlerGetTokenTransfers(c *fiber.Ctx) error {
794
795
}
795
796
796
797
// TokenTransfersAddress
797
- // @Summary Get token transfer by address
798
+ // @Summary Get Token Transfer By Address
798
799
// @Description get historical token transfers by address
799
800
// @Tags Transactions
800
801
// @BasePath /api/v1
@@ -869,7 +870,7 @@ func handlerGetTokenTransfersAddress(c *fiber.Ctx) error {
869
870
}
870
871
871
872
// TokenTransfersTokenContract
872
- // @Summary Get token transfers by token contract
873
+ // @Summary Get Token Transfers By Token Contract
873
874
// @Description get historical token transfers by token contract
874
875
// @Tags Transactions
875
876
// @BasePath /api/v1
@@ -944,7 +945,7 @@ func handlerGetTokenTransfersTokenContract(c *fiber.Ctx) error {
944
945
}
945
946
946
947
// TokenAddressesTokenContract
947
- // @Summary Get token holders by token contract
948
+ // @Summary Get Token Holders By Token Contract
948
949
// @Description get token holders
949
950
// @Tags Transactions
950
951
// @BasePath /api/v1
0 commit comments