import cobo_waas2
from cobo_waas2.models.check_loop_transfers200_response_inner import (
CheckLoopTransfers200ResponseInner,
)
from cobo_waas2.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.dev.cobo.com/v2
# See configuration.py for a list of all supported configuration parameters.
configuration = cobo_waas2.Configuration(
api_private_key="<YOUR_PRIVATE_KEY>", host="https://api.dev.cobo.com/v2"
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = cobo_waas2.WalletsApi(api_client)
token_id = "ETH_USDT"
source_wallet_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479"
destination_addresses = "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97"
try:
# Check Loop transfers
api_response = api_instance.check_loop_transfers(
token_id, source_wallet_id, destination_addresses
)
print("The response of WalletsApi->check_loop_transfers:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling WalletsApi->check_loop_transfers: %s\n" % e)
// Import classes:
import com.cobo.waas2.ApiClient;
import com.cobo.waas2.ApiException;
import com.cobo.waas2.Configuration;
import com.cobo.waas2.api.WalletsApi;
import com.cobo.waas2.model.*;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// for dev environment
// defaultClient.setEnv(Env.DEV);
// for production environment
// defaultClient.setEnv(Env.PROD);
defaultClient.setPrivKey("<YOUR_API_PRIVATE_KEY_IN_HEX>");
WalletsApi apiInstance = new WalletsApi();
String tokenId = "ETH_USDT";
UUID sourceWalletId = UUID.fromString("f47ac10b-58cc-4372-a567-0e02b2c3d479");
String destinationAddresses =
"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97";
try {
List<CheckLoopTransfers200ResponseInner> result =
apiInstance.checkLoopTransfers(tokenId, sourceWalletId, destinationAddresses);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling WalletsApi#checkLoopTransfers");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
package main
import (
"context"
"fmt"
coboWaas2 "github.com/CoboGlobal/cobo-waas2-go-sdk/cobo_waas2"
"github.com/CoboGlobal/cobo-waas2-go-sdk/cobo_waas2/crypto"
"os"
)
func main() {
tokenId := "ETH_USDT" // string | The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](/v2/api-references/wallets/list-enabled-tokens).
sourceWalletId := "f47ac10b-58cc-4372-a567-0e02b2c3d479" // string | The source wallet ID.
destinationAddresses := "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97" // string | A list of destination wallet addresses, separated by comma.
configuration := coboWaas2.NewConfiguration()
apiClient := coboWaas2.NewAPIClient(configuration)
ctx := context.Background()
// ctx = context.WithValue(ctx, coboWaas2.ContextServerHost, "https://api[.xxx].cobo.com/v2")
// ctx = context.WithValue(ctx, coboWaas2.ContextEnv, coboWaas2.DevEnv)
ctx = context.WithValue(ctx, coboWaas2.ContextPortalSigner, crypto.Ed25519Signer{
Secret: "<YOUR_API_PRIV_KEY_IN_HEX>",
})
resp, r, err := apiClient.WalletsAPI.CheckLoopTransfers(ctx).TokenId(tokenId).SourceWalletId(sourceWalletId).DestinationAddresses(destinationAddresses).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `WalletsAPI.CheckLoopTransfers``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `CheckLoopTransfers`: []CheckLoopTransfers200ResponseInner
fmt.Fprintf(os.Stdout, "Response from `WalletsAPI.CheckLoopTransfers`: %v\n", resp)
}
const CoboWaas2 = require('@cobo/cobo-waas2');
// initial default api client
const apiClient = CoboWaas2.ApiClient.instance
// for dev env
// apiClient.setEnv(CoboWaas2.Env.DEV);
apiClient.setPrivateKey("<YOUR_API_PRIVATE_KEY_IN_HEX>");
// call api
const apiInstance = new CoboWaas2.WalletsApi();
const token_id = "ETH_USDT"; // String | The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](/v2/api-references/wallets/list-enabled-tokens).
const source_wallet_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479"; // String | The source wallet ID.
const destination_addresses = "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97"; // String | A list of destination wallet addresses, separated by comma.
apiInstance.checkLoopTransfers(token_id, source_wallet_id, destination_addresses).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});
