Skip to content

Commit

Permalink
Release 3.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb committed Oct 1, 2024
1 parent 5fb3404 commit 57401f9
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 14 deletions.
2 changes: 1 addition & 1 deletion contracts/factories/base-factory/schema/base-factory.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "base-factory",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
2 changes: 1 addition & 1 deletion contracts/minters/base-minter/schema/base-minter.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "base-minter",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"properties": {
"mint": {
"type": "object",
"required": [
"proof_hashes"
],
"properties": {
"allocation": {
"type": [
Expand All @@ -23,7 +20,10 @@
"minimum": 0.0
},
"proof_hashes": {
"type": "array",
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
"mint": {
"type": "object",
"properties": {
"allocation": {
"type": [
"integer",
"null"
],
"format": "uint32",
"minimum": 0.0
},
"proof_hashes": {
"type": [
"array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
"mint": {
"type": "object",
"properties": {
"allocation": {
"type": [
"integer",
"null"
],
"format": "uint32",
"minimum": 0.0
},
"proof_hashes": {
"type": [
"array",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "vending-minter-wl-flex-featured",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "vending-minter-wl-flex",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
2 changes: 1 addition & 1 deletion contracts/sg-eth-airdrop/schema/sg-eth-airdrop.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "sg-eth-airdrop",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
2 changes: 1 addition & 1 deletion contracts/splits/schema/sg-splits.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "sg-splits",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "sg-whitelist-flex",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "whitelist-immutable",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "whitelist-mtree",
"contract_version": "3.14.0",
"contract_version": "3.15.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
2 changes: 1 addition & 1 deletion ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stargazezone/launchpad",
"version": "3.14.0",
"version": "3.15.0",
"description": "Stargaze Launchpad CosmWasm Typescript Types",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 57401f9

Please sign in to comment.