diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index 9b831ee..7f853b1 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -18,8 +18,8 @@ jobs: - name: Get the latest and release tag run: | TAGS=$(git describe --tags $(git rev-list --tags --max-count=2)) - RELEASE_TAG=$(echo $TAGS | sed -n '1p') - LATEST_TAG=$(echo $TAGS | sed -n '2p') + RELEASE_TAG=$(echo "$TAGS" | awk 'NR==1') + LATEST_TAG=$(echo "$TAGS" | awk 'NR==2') echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV echo "RELEASE_TAG=$RELEASE_TAG" >> $GITHUB_ENV diff --git a/VERSION b/VERSION index 157e54f..f1547e6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.6 +2.0.7 diff --git a/assets/usdc-0/info.json b/assets/usdc-0/info.json index bae45b2..3a3c90f 100644 --- a/assets/usdc-0/info.json +++ b/assets/usdc-0/info.json @@ -190,6 +190,16 @@ "mainnet" ] }, + { + "address": "0xC96971f6F5A1D20EFcD465B1163812a955b414A3", + "decimals": 6, + "name": "USDC", + "network": "evm-84532", + "symbol": "USDC", + "tags": [ + "testnet" + ] + }, { "address": "0xC9C0aD3179eE2f4801454926ED5D6A2Da30b56FB", "decimals": 18, diff --git a/assets/usdc-1/image-128.png b/assets/usdc-1/image-128.png new file mode 100644 index 0000000..24e98bf Binary files /dev/null and b/assets/usdc-1/image-128.png differ diff --git a/assets/usdc-1/image-256.png b/assets/usdc-1/image-256.png new file mode 100644 index 0000000..e93a8cc Binary files /dev/null and b/assets/usdc-1/image-256.png differ diff --git a/assets/usdc-1/image-32.png b/assets/usdc-1/image-32.png new file mode 100644 index 0000000..c1ab5d3 Binary files /dev/null and b/assets/usdc-1/image-32.png differ diff --git a/assets/usdc-1/image-64.png b/assets/usdc-1/image-64.png new file mode 100644 index 0000000..cdb115b Binary files /dev/null and b/assets/usdc-1/image-64.png differ diff --git a/assets/usdc-1/info.json b/assets/usdc-1/info.json new file mode 100644 index 0000000..2559737 --- /dev/null +++ b/assets/usdc-1/info.json @@ -0,0 +1,34 @@ +{ + "contracts": [ + { + "address": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "decimals": 6, + "name": "USD Base Coin", + "network": "evm-8453", + "symbol": "USDbC", + "tags": [ + "mainnet" + ] + } + ], + "id": "usdc-1", + "images": { + "png128": true, + "png256": true, + "png32": true, + "png64": true, + "svg": false + }, + "name": "USD Base Coin", + "references": [ + { + "id": "coingecko", + "url": "https://www.coingecko.com/en/coins/bridged-usd-coin-base" + }, + { + "id": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-base-coin" + } + ], + "tags": [] +} diff --git a/enums/ids/asset.json b/enums/ids/asset.json index 9cb2d09..451754f 100644 --- a/enums/ids/asset.json +++ b/enums/ids/asset.json @@ -1259,6 +1259,10 @@ "description": "USD Coin", "value": "usdc-0" }, + { + "description": "USD Base Coin", + "value": "usdc-1" + }, { "description": "Decentralized USD", "value": "usdd-0" diff --git a/requirements/essential.txt b/requirements/essential.txt index 6bece19..335a9fe 100644 --- a/requirements/essential.txt +++ b/requirements/essential.txt @@ -1,5 +1,5 @@ # Specifies the essential requirements of the project. -hexbytes==0.3.1 -pydantic==2.5.3 -web3==6.14.0 -build==1.2.1 +hexbytes>=0.3.1 +pydantic>=2.5.3 +web3>=6.14.0 +build>=1.2.1